🐛 Fix file dashboard icon sometimes overflow

This commit is contained in:
2025-11-24 22:51:22 +08:00
parent b4801d6af6
commit 3a7d8b1a0d

View File

@@ -742,7 +742,9 @@ class FileListView extends HookConsumerWidget {
), ),
), ),
const Gap(16), const Gap(16),
Row( SingleChildScrollView(
scrollDirection: Axis.horizontal,
child: Row(
mainAxisAlignment: MainAxisAlignment.center, mainAxisAlignment: MainAxisAlignment.center,
children: [ children: [
ElevatedButton.icon( ElevatedButton.icon(
@@ -759,6 +761,7 @@ class FileListView extends HookConsumerWidget {
), ),
], ],
), ),
),
], ],
), ),
), ),