Double-Column Waterfall Flow | Single-Column Waterfall Flow |
![]() |
![]() |
// Navigate to the Live Stream List pageNavigator.push(context, MaterialPageRoute(builder: (context) {return LiveListWidget(style: LiveListViewStyle.doubleColumn); // Initial layout style: supports doubleColumn and singleColumn)}));
// --- Choose one of the following integration methods based on your Widget tree structure ---// [Option 1] As the only child Widget (single subtree)// Suitable for containers like Container, Padding, etc. that typically have a single childContainer(child:// Insert the Live Stream List page hereLiveListWidget(style: LiveListViewStyle.doubleColumn) // Initial layout style: supports doubleColumn and singleColumn)// [Option 2] As one of multiple child Widgets (multi-subtree)// Suitable for layouts like Column, Row, Stack, etc. that support multiple childrenStack(children: [YourOtherWidget(), // Your other child Widget// Insert the Live Stream List page hereLiveListWidget(style: LiveListViewStyle.doubleColumn), // Initial layout style: supports doubleColumn and singleColumnYourOtherWidget(), // Your other child Widget])
Feature | Description | Integration Guide |
Host Streaming | Implements the complete host streaming workflow, including pre-stream setup and post-live interactions | |
Audience Viewing | Allows the audience to enter the host's live stream room and watch the stream, supporting audience co-hosting, live stream room information, online audience list, live comments, and more |
フィードバック