According to the example in the README, the right way to use the widget is -
Stack(
children: [
DropzoneView(...),
Center(child: Text('Drop files here')),
],
)
In many cases, DropzoneView is used in Stack with other widgets on top of it but there no example for it. Something like -
Stack(
children: [
DropzoneView(...),
// Other Widgets
Center(child: Text('Drop files here')),
],
)
But when there's SelectionArea in the widget above it, for some reason DropzoneView doesn't seem to work above it.
According to the example in the README, the right way to use the widget is -
In many cases,
DropzoneViewis used inStackwith other widgets on top of it but there no example for it. Something like -But when there's
SelectionAreain the widget above it, for some reasonDropzoneViewdoesn't seem to work above it.