Skip to content

Commit 0d438ee

Browse files
committed
chore: UX Feedback when selecting files needs some time
1 parent b841d8c commit 0d438ee

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

lib/utils/file_selector.dart

+10-6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import 'package:fluffychat/widgets/future_loading_dialog.dart';
12
import 'package:flutter/widgets.dart';
23

34
import 'package:file_picker/file_picker.dart';
@@ -14,14 +15,17 @@ Future<List<XFile>> selectFiles(
1415
}) async {
1516
if (!PlatformInfos.isLinux) {
1617
final result = await AppLock.of(context).pauseWhile(
17-
FilePicker.platform.pickFiles(
18-
compressionQuality: 0,
19-
allowMultiple: allowMultiple,
20-
type: type.filePickerType,
21-
allowedExtensions: type.extensions,
18+
showFutureLoadingDialog(
19+
context: context,
20+
future: () => FilePicker.platform.pickFiles(
21+
compressionQuality: 0,
22+
allowMultiple: allowMultiple,
23+
type: type.filePickerType,
24+
allowedExtensions: type.extensions,
25+
),
2226
),
2327
);
24-
return result?.xFiles ?? [];
28+
return result.result?.xFiles ?? [];
2529
}
2630

2731
if (allowMultiple) {

0 commit comments

Comments
 (0)