flutter_aws_chime 1.0.0 copy "flutter_aws_chime: ^1.0.0" to clipboard
flutter_aws_chime: ^1.0.0 copied to clipboard

outdated

A live stream flutter plugin base on aws chime.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'package:flutter_aws_chime/models/join_info.model.dart';
import 'package:flutter_aws_chime/views/meeting.view.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatefulWidget {
  const MyApp({super.key});

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: SafeArea(
        child: Scaffold(
          body: MeetingView(
            JoinInfo(
              MeetingInfo.fromJson({
                'MeetingId': '',
                'ExternalMeetingId': '',
                'MediaRegion': 'us-east-1',
                'MediaPlacement': {
                  "AudioFallbackUrl": "",
                  "AudioHostUrl": "",
                  "EventIngestionUrl": "",
                  "ScreenDataUrl": "",
                  "ScreenSharingUrl": "",
                  "ScreenViewingUrl": "",
                  "SignalingUrl": "",
                  "TurnControlUrl": ""
                },
              }),
              AttendeeInfo.fromJson(
                  {"AttendeeId": "", "ExternalUserId": "", "JoinToken": ""}),
            ),
          ),
        ),
      ),
    );
  }
}
0
likes
0
points
4
downloads

Publisher

unverified uploader

Weekly Downloads

A live stream flutter plugin base on aws chime.

License

unknown (license)

Dependencies

dots_indicator, flutter, flutter_web_plugins, plugin_platform_interface, rxdart

More

Packages that depend on flutter_aws_chime

Packages that implement flutter_aws_chime