miguelpruivo / flutter_file_picker

File picker plugin for Flutter, compatible with mobile (iOS & Android), Web, Desktop (Mac, Linux, Windows) platforms with Flutter Go support.
MIT License
1.34k stars 673 forks source link

[Feature] Web Support #229

Closed miguelpruivo closed 4 years ago

miguelpruivo commented 4 years ago

Motivation

Currently web support is one of most requested features for file_picker.

Have in mind that features are still being added and you need to be on Flutter branches that currently have web support as well (eg. beta, dev, master).

Update: early implementation of this is already available with file_picker_web

jlubeck commented 4 years ago

@miguelpruivo universal_io is supposed to give you access to File for example by choosing wether to use dart.io or dart.html depending on the environment.

miguelpruivo commented 4 years ago

@jlubeck ok, but with one package only? Because the recommended way from Flutter team (which also gave me much more work) is to split in different packages than just one. I've just followed their guidelines for it. But might have a look into it whenever I have some time.