製品アップデート情報
Tencent Cloudオーディオビデオ端末SDKの再生アップグレードおよび承認チェック追加に関するお知らせ
TRTCアプリケーションのサブスクリプションパッケージサービスのリリースに関する説明について

import 'package:tencent_live_uikit/tencent_live_uikit.dart';// Navigate to the live stream list pageNavigator.push(context, MaterialPageRoute(builder: (BuildContext context) {return LiveListWidget();}));
// --- Select one way to integrate based on your Widget tree structure ---// [Option 1] As the only child Widget (single subtree)// Suitable for containers such as Container, Padding that normally only contain one child WidgetContainer(child: LiveListWidget() // Integrate the live list here)// [Option 2] As one of multiple child Widgets (multi-subtree)// Suitable for layouts such as Column, Row, Stack that can contain multiple child WidgetsStack(children: [YourOtherWidget(), // Your other child WidgetLiveListWidget(), // Integrate the live list hereYourOtherWidget(), // Your other child Widget])
Feature | Description | Integration Guide |
Host Streaming | Implements the complete process for a host to start a voice chat room live, including pre-live setup and in-session interactions. | |
Audience Viewing | Enables audience participation after joining the host’s voice chat room, including joining the mic, sending and receiving bullet comments, and more. |
フィードバック