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

@@ -181,7 +181,7 @@ class _LivePageState extends CommonPageState<LivePage, LiveController>
itemBuilder: (context, index) => const VideoCardVSkeleton(),
itemCount: 10,
),
Success(:var response) => SliverMainAxisGroup(
Success(:final response) => SliverMainAxisGroup(
slivers: [
if (controller.newTags case final newTags?)
if (newTags.isNotEmpty)
@@ -247,7 +247,7 @@ class _LivePageState extends CommonPageState<LivePage, LiveController>
: HttpError(onReload: controller.onReload),
],
),
Error(:var errMsg) => HttpError(
Error(:final errMsg) => HttpError(
errMsg: errMsg,
onReload: controller.onReload,
),