Signed-off-by: dom <githubaccount56556@proton.me>
This commit is contained in:
dom
2026-03-17 17:09:24 +08:00
parent 7f2682bb7b
commit d1497115da
27 changed files with 118 additions and 141 deletions

View File

@@ -73,7 +73,7 @@ class _MemberHomeState extends State<MemberHome>
final isOwner = setting != null;
final color = Theme.of(context).colorScheme.outline;
return switch (loadingState) {
Loading() => loadingWidget,
Loading() => circularLoading,
Success(response: final res) =>
res != null
? CustomScrollView(
@@ -257,7 +257,7 @@ class _MemberHomeState extends State<MemberHome>
),
],
)
: scrollErrorWidget(),
: scrollableError,
Error(:final errMsg) => scrollErrorWidget(errMsg: errMsg),
};
}