Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-07-23 16:47:11 +08:00
parent 148e0872b4
commit 418a1e8d39
821 changed files with 29467 additions and 25520 deletions

View File

@@ -20,8 +20,9 @@ class _FavFolderSortPageState extends State<FavFolderSortPage> {
FavController get _favController => widget.favController;
final GlobalKey _key = GlobalKey();
late List<FavFolderInfo> sortList =
List<FavFolderInfo>.from(_favController.loadingState.value.data!);
late List<FavFolderInfo> sortList = List<FavFolderInfo>.from(
_favController.loadingState.value.data!,
);
@override
Widget build(BuildContext context) {
@@ -89,8 +90,9 @@ class _FavFolderSortPageState extends State<FavFolderSortPage> {
child: FavVideoItem(
heroTag: key,
item: item,
onLongPress:
index == 0 ? () => SmartDialog.showToast('默认收藏夹不支持排序') : null,
onLongPress: index == 0
? () => SmartDialog.showToast('默认收藏夹不支持排序')
: null,
),
);
},