feat: 收藏夹删除

This commit is contained in:
guozhigq
2024-04-20 00:55:18 +08:00
parent 26cc77fed3
commit 91cdf6c49a
7 changed files with 96 additions and 17 deletions

View File

@ -62,11 +62,10 @@ class _FavPageState extends State<FavPage> {
return Obx(
() => ListView.builder(
controller: scrollController,
itemCount: _favController.favFolderData.value.list!.length,
itemCount: _favController.favFolderList.length,
itemBuilder: (context, index) {
return FavItem(
favFolderItem:
_favController.favFolderData.value.list![index]);
favFolderItem: _favController.favFolderList[index]);
},
),
);