2
0
mirror of https://github.com/inventree/inventree-app.git synced 2026-06-10 08:27:15 +00:00

File picker (#829)

* Update picker packages

* Remove android permissions explicitly

* Fix call signature

* Update gradle settings

* Update version
This commit is contained in:
Oliver
2026-05-31 09:56:17 +10:00
committed by GitHub
parent e8749b0671
commit 0b0913c77d
8 changed files with 34 additions and 27 deletions
+1 -1
View File
@@ -35,7 +35,7 @@ class FilePickerDialog {
}
static Future<File?> pickFileFromDevice() async {
final FilePickerResult? result = await FilePicker.platform.pickFiles();
final FilePickerResult? result = await FilePicker.pickFiles();
if (result != null) {
String? path = result.files.single.path;