flutter_zoom_sdk 0.0.7 flutter_zoom_sdk: ^0.0.7 copied to clipboard
Zoom SDK from ZOOM ported to flutter as plugin with all necessary features and with Null Safety which is implementation by EvilRATT
import 'package:flutter/material.dart';
import 'meeting_screen.dart';
// for complete example see https://github.com/evilrat/flutter_zoom_sdk/tree/master/example
void main() => runApp(ExampleApp());
class ExampleApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Example Zoom SDK',
theme: ThemeData(
primarySwatch: Colors.blue,
),
navigatorObservers: [ ],
debugShowCheckedModeBanner: false,
initialRoute: '/',
routes: {
'/': (context) => MeetingWidget(),
},
);
}
}