ios_custom_zoom_sdk 0.2.4 copy "ios_custom_zoom_sdk: ^0.2.4" to clipboard
ios_custom_zoom_sdk: ^0.2.4 copied to clipboard

A new Flutter plugin for zoom customization.

example/lib/main.dart

import 'package:ios_custom_zoom_sdk_example/join_screen.dart';
import 'package:ios_custom_zoom_sdk_example/meeting_screen.dart';
import 'package:ios_custom_zoom_sdk_example/start_meeting_screen.dart';
import 'package:flutter/material.dart';
import 'dart:async';

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: [],
      initialRoute: '/',
      routes: {
        '/': (context) => JoinWidget(),
        '/meetingjoin': (context) => MeetingWidget(),
        '/meetingstart': (context) => StartMeetingWidget(),
      },
    );
  }
}
0
likes
130
points
22
downloads

Publisher

unverified uploader

Weekly Downloads

A new Flutter plugin for zoom customization.

Documentation

API reference

License

Apache-2.0 (license)

Dependencies

flutter

More

Packages that depend on ios_custom_zoom_sdk