
// navigate to live list pageNavigator.push(context, MaterialPageRoute(builder: (context) {return LiveListWidget();}));
// --- Select one integration method based on your Widget tree structure ---// [option one] as the only child Widget (single subtree)// Suitable for containers such as Container, Padding that usually only contain one child WidgetContainer(child: LiveListWidget() // Integrate the live stream list here)// [option two] 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 stream list hereYourOtherWidget(), // Your other child Widget])
Feature | Description | Integration Guide |
Host Streaming | The complete workflow for a host to start a stream, including pre-stream setup and various in-stream interactions. | |
Audience Viewing | Audience can watch live streaming after entering the anchor's live streaming room, with features like audience mic connection, live room information, online audience, and bullet screen display. |
フィードバック