flutter_zoom_sdk 1.1.0+4 copy "flutter_zoom_sdk: ^1.1.0+4" to clipboard
flutter_zoom_sdk: ^1.1.0+4 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

example/lib/main.dart

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(const ExampleApp());

class ExampleApp extends StatelessWidget {
  const ExampleApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Example Zoom SDK',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      navigatorObservers: const [],
      debugShowCheckedModeBanner: false,
      initialRoute: '/',
      routes: {
        '/': (context) => const MeetingWidget(),
      },
    );
  }
}
84
likes
140
points
19
downloads

Publisher

verified publisherevilrattechnologies.com

Weekly Downloads

Zoom SDK from ZOOM ported to flutter as plugin with all necessary features and with Null Safety which is implementation by EvilRATT

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

crypto, flutter, flutter_web_plugins, js, plugin_platform_interface

More

Packages that depend on flutter_zoom_sdk