File tree Expand file tree Collapse file tree 5 files changed +19
-9
lines changed Expand file tree Collapse file tree 5 files changed +19
-9
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ Windows: v5.17.6
4
4
5
5
Android: v5.17.6
6
6
7
- Web: v3.0.0
7
+ Web: v3.1.6
8
8
9
9
# Flutter Zoom SDK
10
10
Original file line number Diff line number Diff line change 103
103
}
104
104
</ script >
105
105
<!-- import ZoomMtg dependencies -->
106
- < script src ="https://source.zoom.us/3.0.0 /lib/vendor/react.min.js "> </ script >
107
- < script src ="https://source.zoom.us/3.0.0 /lib/vendor/react-dom.min.js "> </ script >
108
- < script src ="https://source.zoom.us/3.0.0 /lib/vendor/redux.min.js "> </ script >
109
- < script src ="https://source.zoom.us/3.0.0 /lib/vendor/redux-thunk.min.js "> </ script >
110
- < script src ="https://source.zoom.us/3.0.0 /lib/vendor/lodash.min.js "> </ script >
106
+ < script src ="https://source.zoom.us/3.1.6 /lib/vendor/react.min.js "> </ script >
107
+ < script src ="https://source.zoom.us/3.1.6 /lib/vendor/react-dom.min.js "> </ script >
108
+ < script src ="https://source.zoom.us/3.1.6 /lib/vendor/redux.min.js "> </ script >
109
+ < script src ="https://source.zoom.us/3.1.6 /lib/vendor/redux-thunk.min.js "> </ script >
110
+ < script src ="https://source.zoom.us/3.1.6 /lib/vendor/lodash.min.js "> </ script >
111
111
112
112
<!-- import ZoomMtg -->
113
- < script src ="https://source.zoom.us/zoom-meeting-3.0.0 .min.js "> </ script >
113
+ < script src ="https://source.zoom.us/zoom-meeting-3.1.6 .min.js "> </ script >
114
114
< script src ="main.dart.js " type ="application/javascript "> </ script >
115
115
</ body >
116
116
</ html >
Original file line number Diff line number Diff line change @@ -20,6 +20,11 @@ class ZoomViewWeb extends ZoomPlatform {
20
20
ZoomPlatform .instance = ZoomViewWeb ();
21
21
}
22
22
23
+ @override
24
+ void prepareWebZoomSDK () {
25
+ ZoomMtg .prepareWebSDK ();
26
+ }
27
+
23
28
/// Initialize Zoom SDK For Web
24
29
@override
25
30
Future <List > initZoom (ZoomOptions options) async {
@@ -32,7 +37,7 @@ class ZoomViewWeb extends ZoomPlatform {
32
37
}
33
38
34
39
ZoomMtg .preLoadWasm ();
35
- ZoomMtg . prepareWebSDK ();
40
+ prepareWebZoomSDK ();
36
41
37
42
ZoomMtg .i18n.load (options.language ?? 'en-US' );
38
43
debugPrint ('Current language of Zoom - ${ZoomMtg .i18n .getCurrentLang ()}' );
Original file line number Diff line number Diff line change @@ -23,6 +23,11 @@ abstract class ZoomPlatform extends PlatformInterface {
23
23
_instance = instance;
24
24
}
25
25
26
+ /// Flutter prepare Zoom SDK function only for web
27
+ void prepareWebZoomSDK () {
28
+ throw UnimplementedError ('prepareWebZoomSDK() has not been implemented.' );
29
+ }
30
+
26
31
/// Flutter Zoom SDK Initialization function
27
32
Future <List > initZoom (ZoomOptions options) async {
28
33
throw UnimplementedError ('initZoom() has not been implemented.' );
Original file line number Diff line number Diff line change 1
1
name : flutter_zoom_sdk
2
2
description : Zoom SDK from ZOOM ported to flutter as plugin with all necessary features and with Null Safety which is implementation by EvilRATT
3
- version : 1.2.0+6
3
+ version : 1.2.0+7
4
4
homepage : https://github.com/evilrat/flutter_zoom_sdk
5
5
repository : https://github.com/evilrat/flutter_zoom_sdk
6
6
issue_tracker : https://github.com/evilrat/flutter_zoom_sdk/issues
You can’t perform that action at this time.
0 commit comments