Please note that this repository is now in a read-only state and will not receive any further updates or support.
We recommend migrating to the following alternatives:
- Agora SDK: For developers seeking a customizable solution with full control over the user experience. Learn more
- Agora App Builder: For those preferring a no-code approach to integrate real-time engagement features. Get started
For documentation and support, please visit the Agora Documentation.
Instantly integrate Agora video calling or video streaming into your Flutter application.
NOTE: The Flutter VideoUIKit( >version 1.1.0) uses the latest version of the Agora 4.x SDK. To know more about the changes and the new features in the 4.x SDK, kindly take a look at the docs.
- Add Usernames
- More Event Callbacks
- Add RTM SDK
- Screen Sharing (Currently in Beta)
- Layout for One to One Video Call
- Layout for Voice Calls
- Re-orderable list view (Floating Layout)
- Cloud recording
- Promoting an audience member to a broadcaster role.
- Muting/Unmuting a remote member
- Flutter Web Support as a pre-release
- Flutter Desktop Support as a pre-release
- An Agora developer account
- An Android or iOS Device
- A Flutter Project
In your Flutter application, add the agora_uikit
as a dependency inside your pubspec.yaml
file.
In your Android level build.gradle
add this at the end of the repositories:
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
Agora Video SDK requires camera
and microphone
permission to start video call.
Open the AndroidManifest.xml
file and add the required device permissions to the file.
<manifest>
...
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.RECORD_AUDIO" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<!-- The Agora SDK requires Bluetooth permissions in case users are using Bluetooth devices.-->
<uses-permission android:name="android.permission.BLUETOOTH" />
...
</manifest>
Open info.plist
and add:
Privacy - Microphone Usage Description
, and add a note in the Value column.Privacy - Camera Usage Description
, and add a note in the Value column.
Your application can still run the voice call when it is switched to the background if the background mode is enabled. Select the app target in Xcode, click the Capabilities tab, enable Background Modes, and check Audio, AirPlay, and Picture in Picture.
// Instantiate the client
final AgoraClient client = AgoraClient(
agoraConnectionData: AgoraConnectionData(
appId: "<--Add Your App Id Here-->",
channelName: "test",
),
);
// Initialize the Agora Engine
@override
void initState() {
super.initState();
initAgora();
}
void initAgora() async {
await client.initialize();
}
// Build your layout
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
body: SafeArea(
child: Stack(
children: [
AgoraVideoViewer(client: client),
AgoraVideoButtons(client: client),
],
),
),
),
);
}
The plan is to grow this library and have similar offerings across all supported platforms. There are already similar libraries for Android, iOS, React Native, and Web React, so be sure to check them out.