File tree 1 file changed +10
-6
lines changed
1 file changed +10
-6
lines changed Original file line number Diff line number Diff line change
1
+ import 'package:fluffychat/widgets/future_loading_dialog.dart' ;
1
2
import 'package:flutter/widgets.dart' ;
2
3
3
4
import 'package:file_picker/file_picker.dart' ;
@@ -14,14 +15,17 @@ Future<List<XFile>> selectFiles(
14
15
}) async {
15
16
if (! PlatformInfos .isLinux) {
16
17
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
+ ),
22
26
),
23
27
);
24
- return result? .xFiles ?? [];
28
+ return result.result ? .xFiles ?? [];
25
29
}
26
30
27
31
if (allowMultiple) {
You can’t perform that action at this time.
0 commit comments