flutter_zoom_videosdk 1.10.11 copy "flutter_zoom_videosdk: ^1.10.11" to clipboard
flutter_zoom_videosdk: ^1.10.11 copied to clipboard

A Flutter plugin for Zoom Video SDK.

flutter-zoom-video-sdk #

Video SDK for Flutter

Getting started #

To make it easy for you to get started with Flutter Video SDK, here's a list of recommended next steps.

Not yet download the Flutter? Download FLutter

This project is a starting point for a Flutter plug-in package, a specialized package that includes platform-specific implementation code for Android and/or iOS.

For help getting started with Flutter development, view the online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.

Usage #

The SDK initialize configuration needs to be fill in main.dart

InitConfig initConfig = InitConfig(
  domain: "zoom.us",
  enableLog: true,
);

Get the Video SDK instance.

var zoom = ZoomVideoSdk();

Open the event channel and listen to native SDK event

var eventListener = ZoomVideoSdkEventListener();

Generate an SDK JWT Token.

Then, join a session.

Map<String, bool> SDKaudioOptions = {
  "connect": true, 
  "mute": true
};
Map<String, bool> SDKvideoOptions = {
  "localVideoOn": true,
};
JoinSessionConfig joinSession = JoinSessionConfig(
  sessionName:"sessionName",
  sessionPassword: "sessionPwd",
  token: "JWT token",
  userName: "displayName",
  audioOptions: SDKaudioOptions,
  videoOptions: SDKvideoOptions,
  sessionIdleTimeoutMins: "time out minutes",
);
await zoom.joinSession(joinSession);

Sample App #

Checkout the Zoom Flutter Video SDK Sample App in the example directory.

Documentation #

Please visit Video SDK for Flutter to learn how to use the SDK wrapper and run the sample application.

For the full list of APIs and Event Listeners, see the Reference.

Need help? #

If you're looking for help, try Developer Support or our Developer Forum. Priority support is also available with Premier Developer Support plans.

Changelog #

For the changelog, see Video SDK for Flutter.

License #

Use of this SDK is subject to our License and Terms of Use;

Open Source Software Source Code #

Some licenses for OSS contained in our products give you the right to access the source code under said license. You may obtain a copy of source code for the relevant OSS via the following link: https://zoom.us/opensource/source. Please obtain independent legal advice or counsel to determine your responsibility to make source code available under any specific OSS project.

Please see oss_attribution.txt for more information.


Copyright ©2023 Zoom Video Communications, Inc. All rights reserved.


11
likes
100
pub points
86%
popularity

Publisher

unverified uploader

A Flutter plugin for Zoom Video SDK.

Homepage

Documentation

API reference

License

unknown (LICENSE)

Dependencies

events_emitter, flutter, flutter_hooks, plugin_platform_interface

More

Packages that depend on flutter_zoom_videosdk