volc_engine_rtc 3.57.3 volc_engine_rtc: ^3.57.3 copied to clipboard
This Flutter plugin provides rtc sdk native APIs for you to implement real-time audio & video communication functions in your application.
// Copyright (c) 2022 Beijing Volcano Engine Technology 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(),
);
}