Closes #1050

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-08-20 22:04:39 +08:00
parent e096ebcbba
commit 76f1d0129b
171 changed files with 2190 additions and 2063 deletions

View File

@@ -68,6 +68,7 @@ class _FavSortPageState extends State<FavSortPage> {
@override
Widget build(BuildContext context) {
return Scaffold(
resizeToAvoidBottomInset: false,
appBar: AppBar(
title: Text('排序: ${_favDetailController.folderInfo.value.title}'),
actions: [
@@ -94,11 +95,7 @@ class _FavSortPageState extends State<FavSortPage> {
const SizedBox(width: 16),
],
),
body: SafeArea(
top: false,
bottom: false,
child: _buildBody,
),
body: _buildBody,
);
}
@@ -127,9 +124,9 @@ class _FavSortPageState extends State<FavSortPage> {
scrollController: _scrollController,
onReorder: onReorder,
physics: const AlwaysScrollableScrollPhysics(),
footer: SizedBox(
height: MediaQuery.paddingOf(context).bottom + 80,
),
padding:
MediaQuery.viewPaddingOf(context).copyWith(top: 0) +
const EdgeInsets.only(bottom: 100),
itemCount: sortList.length,
itemBuilder: (context, index) {
final item = sortList[index];