utd_live_room_kit 1.1.0
utd_live_room_kit: ^1.1.0 copied to clipboard
LiveKit-based video live room for Flutter: host camera plus up to three guest tiles, go-live requests, host media control, chat, and minimize/PiP.
UTD Live Room Kit #
A Flutter package for building video live-room experiences, powered by
LiveKit and the UTD Stream Engine. It puts a host camera
on stage with up to 3 guest video tiles, built on the same seat state
machine as utd_audio_room_kit —
give it the required data and you get a fully interactive live room with no
extra UI code.
Features #
- Drop-in live-room UI — host camera + up to 3 guest video tiles from required data alone.
- Go-live flow — host invites guests; audience requests to go live; host approves/rejects with a live request queue.
- Host force-control — host can mute/unmute or stop a guest's camera/mic.
- Seat management — take, leave, switch, lock, unlock, kick (shared seat state machine with the audio kit).
- Media controls — microphone & camera with reactive state (Bluetooth-preferring audio routing).
- Real-time chat — data-channel messages with batching and dedup.
- Reconnection — tiered: light sync (<15s), full sync (<60s), default force-exit (>60s).
- Minimize / PiP — minimize to a floating overlay; optional Android OS Picture-in-Picture.
- Video effects — pairs with
utd_video_effects_kitviaUTDLiveRoomConfig.buildVideoProcessor(a LiveKitTrackProcessor) for live filters & beauty effects.
Getting started #
Add the dependency:
dependencies:
utd_live_room_kit: ^1.0.0
Then import and drop UTDLiveRoom into your widget tree with a
UTDLiveRoomConfig:
import 'package:utd_live_room_kit/utd_live_room_kit.dart';
See the exported API in
lib/utd_live_room_kit.dart — UTDLiveRoom,
UTDRoomController, SeatController, MediaController, ChatController, and
the room/seat/participant models.
Requirements #
- A LiveKit server + UTD Stream Engine token endpoint.
- Camera & microphone runtime permissions (handled via
permission_handler).