mod: lint

mod: tweaks

opt: publish page

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-05-04 11:37:13 +08:00
parent 2cfad80214
commit caa58e9d7d
313 changed files with 2751 additions and 2789 deletions

View File

@@ -103,9 +103,9 @@ class _MemberPageState extends State<MemberPage> {
if (_userController.isFollowed == 1)
PopupMenuItem(
onTap: _userController.onRemoveFan,
child: Row(
child: const Row(
mainAxisSize: MainAxisSize.min,
children: const [
children: [
Icon(Icons.remove_circle_outline_outlined, size: 19),
SizedBox(width: 10),
Text('移除粉丝'),
@@ -197,7 +197,7 @@ class _MemberPageState extends State<MemberPage> {
],
),
)
: Center(child: const Text('EMPTY')),
: const Center(child: Text('EMPTY')),
);
},
)
@@ -288,7 +288,7 @@ class _MemberPageState extends State<MemberPage> {
: GestureDetector(
onTap: _userController.onReload,
behavior: HitTestBehavior.opaque,
child: SizedBox(height: 56, width: double.infinity),
child: const SizedBox(height: 56, width: double.infinity),
),
Error() => _errorWidget(userState.errMsg),
};