tgortcflutter 1.0.5
tgortcflutter: ^1.0.5 copied to clipboard
A Flutter SDK for audio and video calling based on LiveKit. Provides easy-to-use APIs for room management, participant tracking, and media control.
Use this package as a library
Depend on it
Run this command:
With Flutter:
$ flutter pub add tgortcflutterThis will add a line like this to your package's pubspec.yaml (and run an implicit flutter pub get):
dependencies:
tgortcflutter: ^1.0.5Alternatively, your editor might support flutter pub get. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:tgortcflutter/entity/const.dart';
import 'package:tgortcflutter/entity/options.dart';
import 'package:tgortcflutter/entity/room_info.dart';
import 'package:tgortcflutter/entity/video_info.dart';
import 'package:tgortcflutter/manager/tgo_audio_manager.dart';
import 'package:tgortcflutter/manager/tgo_participant_manager.dart';
import 'package:tgortcflutter/manager/tgo_room_manager.dart';
import 'package:tgortcflutter/participant/tgo_participant.dart';
import 'package:tgortcflutter/tgortc.dart';
import 'package:tgortcflutter/track/tgo_track_renderer.dart';
import 'package:tgortcflutter/utils/logger.dart';