byteplus_rtc 3.56.2 copy "byteplus_rtc: ^3.56.2" to clipboard
byteplus_rtc: ^3.56.2 copied to clipboard

This Flutter plugin provides rtc sdk native APIs for you to implement real-time audio & video communication functions in your application.

example/lib/main.dart

// Copyright 2022 BytePlus Pte. Ltd.
// SPDX-License-Identifier: MIT

import 'package:flutter/material.dart';

import 'login_page.dart';

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

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

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) => MaterialApp(
        theme: ThemeData(
          primarySwatch: Colors.blue,
        ),
        home: const LoginPage(),
      );
}
4
likes
150
points
534
downloads

Publisher

verified publisherbyteplus.com

Weekly Downloads

This Flutter plugin provides rtc sdk native APIs for you to implement real-time audio & video communication functions in your application.

Homepage

Documentation

API reference

License

MIT (license)

Dependencies

async, flutter

More

Packages that depend on byteplus_rtc