Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-05-21 11:48:42 +08:00
parent 1efd62803a
commit ac60ac417b
130 changed files with 1631 additions and 2132 deletions

View File

@@ -32,7 +32,7 @@ class _FavFolderSortPageState extends State<FavFolderSortPage> {
}
if (_scrollController.position.pixels >=
_scrollController.position.maxScrollExtent - 200) {
_favController.onLoadMore().then((_) {
_favController.onLoadMore().whenComplete(() {
try {
if (_favController.loadingState.value is Success) {
List<FavFolderItemData> list =
@@ -130,11 +130,8 @@ class _FavFolderSortPageState extends State<FavFolderSortPage> {
child: FavItem(
heroTag: key,
favFolderItem: item,
onLongPress: index == 0
? () {
SmartDialog.showToast('默认收藏夹不支持排序');
}
: null,
onLongPress:
index == 0 ? () => SmartDialog.showToast('默认收藏夹不支持排序') : null,
),
);
},