fix: refresh uplist

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-04-26 17:02:14 +08:00
parent 40fb93f036
commit ed99aee3fd
4 changed files with 11 additions and 11 deletions

View File

@@ -89,12 +89,13 @@ class _UpPanelState extends State<UpPanel> {
),
),
),
SliverList.builder(
itemCount: upList.length,
itemBuilder: (context, index) {
return upItemBuild(upList[index]);
},
),
if (upList.isNotEmpty)
SliverList.builder(
itemCount: upList.length,
itemBuilder: (context, index) {
return upItemBuild(upList[index]);
},
),
const SliverToBoxAdapter(child: SizedBox(height: 200)),
],
);