deakjahn / flutter_dropzone

A drag-and-drop Flutter plugin (Web). Only web and only from outside into Flutter.
https://pub.dev/packages/flutter_dropzone
85 stars 36 forks source link

add folder support #57

Closed huanghui1998hhh closed 2 years ago

huanghui1998hhh commented 2 years ago

If the file is a folder, then will get all files in it.

deakjahn commented 2 years ago

Help me understand, we already have dropMultiple. I'm not sure people will appreciate receiving hundreds or potentially thousands of calls for a larger folder... Not to mention that this would mean backward change for people already using it as it is now. So, I think, at least an extra bool passed that would allow people to opt in into this behavior (plus maybe another one to indicate that they want to recurse into directories) would be needed in the first place.

huanghui1998hhh commented 2 years ago

Yes, you're right, I wasn't thoughtful enough. Future, if i have time, i'll Pr a more perfect one.