File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ import 'dart:async';
1717import 'package:flutter/material.dart' ;
1818
1919import 'package:flutter_background/flutter_background.dart' ;
20- import 'package:flutter_webrtc/flutter_webrtc.dart' as rtc ;
20+ import 'package:flutter_webrtc/flutter_webrtc.dart' ;
2121import 'package:livekit_client/livekit_client.dart' ;
2222import 'package:provider/provider.dart' ;
2323
@@ -192,7 +192,7 @@ class MediaDeviceContext extends ChangeNotifier {
192192 Future <void > enableScreenShare (context) async {
193193 if (lkPlatformIsDesktop ()) {
194194 try {
195- final source = await showDialog< rtc. DesktopCapturerSource > (
195+ final source = await showDialog <DesktopCapturerSource >(
196196 context: context,
197197 builder: (context) => ScreenSelectDialog (),
198198 );
@@ -215,7 +215,7 @@ class MediaDeviceContext extends ChangeNotifier {
215215 }
216216 if (lkPlatformIs (PlatformType .android)) {
217217 // Android specific
218- bool hasCapturePermission = await rtc. Helper .requestCapturePermission ();
218+ bool hasCapturePermission = await Helper .requestCapturePermission ();
219219 if (! hasCapturePermission) {
220220 return ;
221221 }
Original file line number Diff line number Diff line change @@ -12,8 +12,10 @@ dependencies:
1212 flutter :
1313 sdk : flutter
1414 flutter_background : ^1.3.0+1
15+ flutter_webrtc : ^0.12.1+hotfix.1
1516 google_fonts : ^6.2.1
1617 http : ^1.2.2
18+ intl : ^0.19.0
1719 livekit_client : ^2.3.0
1820 provider : ^6.1.2
1921 responsive_builder : ^0.7.1
@@ -24,6 +26,14 @@ dev_dependencies:
2426 flutter_lints : ^4.0.0
2527 import_sorter : ^4.6.0
2628
29+
30+ topics :
31+ - webrtc
32+ - ai
33+ - livestream
34+ - conference
35+ - agent
36+
2737# For information on the generic Dart part of this file, see the
2838# following page: https://dart.dev/tools/pub/pubspec
2939
You can’t perform that action at this time.
0 commit comments