mod: 代码整理

This commit is contained in:
guozhigq
2023-07-25 23:44:09 +08:00
parent 6d9f66c420
commit 7745ea076b
74 changed files with 387 additions and 424 deletions

View File

@ -62,7 +62,7 @@ class _FollowPageState extends State<FollowPage> {
List<FollowItemModel> list = _followController.followList;
return Obx(
() => list.length == 1
? SizedBox()
? const SizedBox()
: ListView.builder(
controller: scrollController,
itemCount: list.length,
@ -79,7 +79,7 @@ class _FollowPageState extends State<FollowPage> {
}
} else {
// 骨架屏
return SizedBox();
return const SizedBox();
}
},
)),