Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-12-27 20:54:41 +08:00
parent 25acf3a9bb
commit b51c646415
227 changed files with 768 additions and 764 deletions

View File

@@ -78,7 +78,7 @@ class _LiveAreaPageState extends State<LiveAreaPage> {
) {
return switch (loadingState) {
Loading() => const SizedBox.shrink(),
Success(:var response) =>
Success(:final response) =>
response != null && response.isNotEmpty
? DefaultTabController(
length: response.length,
@@ -158,7 +158,7 @@ class _LiveAreaPageState extends State<LiveAreaPage> {
),
)
: scrollErrorWidget(onReload: _controller.onReload),
Error(:var errMsg) => scrollErrorWidget(
Error(:final errMsg) => scrollErrorWidget(
errMsg: errMsg,
onReload: _controller.onReload,
),