agora_uikit 1.3.10 agora_uikit: ^1.3.10 copied to clipboard
Flutter plugin to simply integrate Agora Video Calling or Live Video Streaming to your app with just a few lines of code.
import 'package:agora_uikit/agora_uikit.dart';
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({super.key});
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
final AgoraClient client = AgoraClient(
agoraConnectionData: AgoraConnectionData(
appId: "<--Add your App Id here-->",
channelName: "test",
username: "user",
),
);
@override
void initState() {
super.initState();
initAgora();
}
void initAgora() async {
await client.initialize();
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Agora VideoUIKit'),
centerTitle: true,
),
body: SafeArea(
child: Stack(
children: [
AgoraVideoViewer(
client: client,
layoutType: Layout.floating,
enableHostControls: true, // Add this to enable host controls
),
AgoraVideoButtons(
client: client,
addScreenSharing: false, // Add this to enable screen sharing
),
],
),
),
),
);
}
}