overlay_container
A flutter widget which renders its child outside the original widget hierarchy.
This demo is present as an example here. You can also checkout the examples
folder.
The child passed to this widget is rendered outside the widget hierarchy as an overlay to the exisiting widget tree. As a result this widget is highly suitable for building custom dropdown options, autocomplete suggestions, dialogs, etc. Think of it as widget placed absolutely and having a positive z-index over the rest of the widget tree.
It is actually a friendly wrapper over the Flutter's Overlay and OverlayEntry APIs.
If you've ever used react, this tries to do what React Portal does, in a way.
Example.
A more elaborate example is found here.
Installation.
- Instructions are here.