halildurmus / filepicker_windows

File and directory picker for Windows that uses common dialog controls.
BSD 3-Clause "New" or "Revised" License
68 stars 19 forks source link

Asynchronous #4

Closed hexaclue closed 5 months ago

hexaclue commented 3 years ago

Many parts of Dart are asynchronous. This package does not support Futures, as far as I know.

I would like to see functions like filePicker.getFileAsync() implemented. In this case, this function would return Future<File>, as filePicker.getFile() returns File.

Thank you.