byteplus_rtc 3.56.1 copy "byteplus_rtc: ^3.56.1" to clipboard
byteplus_rtc: ^3.56.1 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(),
      );
}
2
likes
130
pub points
64%
popularity

Publisher

verified publisherbyteplus.com

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