Skip to content

Proper example when there're other widgets in the Stack with DropzoneView #71

@coder-with-a-bushido

Description

@coder-with-a-bushido

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions