* screen sharing for desktop (WIP). * use git repo for testing. * update. * Add sourceId/frameRate to ScreenShareCaptureOptions. * Compatible with flutter web. * Rendering of camera and screenshare video tracks at same time. * Remote screen sharing is shown first, and fixed sub/unsub button for screenshare widget. * resolved conflict. * modify flutter-webrtc to pub version. * remove unused import. * chore: Common params for Camera and ScreenShare.
34 lines
1.2 KiB
Dart
34 lines
1.2 KiB
Dart
/// Flutter Client SDK to LiveKit.
|
|
library livekit_client;
|
|
|
|
export 'src/core/room.dart';
|
|
export 'src/events.dart';
|
|
export 'src/exceptions.dart';
|
|
export 'src/livekit.dart';
|
|
export 'src/managers/event.dart';
|
|
export 'src/options.dart';
|
|
export 'src/participant/local.dart';
|
|
export 'src/participant/local.dart';
|
|
export 'src/participant/participant.dart';
|
|
export 'src/participant/remote.dart';
|
|
export 'src/proto/livekit_models.pb.dart' show TrackType, VideoQuality;
|
|
export 'src/publication/local.dart';
|
|
export 'src/publication/remote.dart';
|
|
export 'src/publication/track_publication.dart';
|
|
export 'src/track/local/audio.dart';
|
|
export 'src/track/local/local.dart';
|
|
export 'src/track/local/video.dart';
|
|
export 'src/track/options.dart';
|
|
export 'src/track/remote/audio.dart';
|
|
export 'src/track/remote/remote.dart';
|
|
export 'src/track/remote/video.dart';
|
|
export 'src/track/track.dart';
|
|
export 'src/types/other.dart';
|
|
export 'src/types/participant_permissions.dart';
|
|
export 'src/types/video_dimensions.dart';
|
|
export 'src/types/video_encoding.dart';
|
|
export 'src/types/video_parameters.dart';
|
|
export 'src/widgets/screen_select_dialog.dart';
|
|
export 'src/widgets/video_track_renderer.dart';
|
|
export 'src/extensions.dart' show WidgetsBindingCompatible;
|