create suggest box email

This commit is contained in:
ManhNTX
2022-06-29 01:39:07 +07:00
committed by Dat H. Pham
parent 7ca8b83822
commit 0c3391f76c
20 changed files with 633 additions and 90 deletions
@@ -0,0 +1,22 @@
# 7. Fix show Dropdown can't not over overlayUI (#685)
Date: 2022-06-29
## Status
- Issue: DropDownButton menu shows behind Overlay
## Context
- Root cause: Add package flutter_portal to fix this issue
## Decision
- When add Dropdown button to overlayUI, it can't lying above overlayUI.
## Consequences
- The app Navigator has a list of routes (_history) and each route has its list of OverlayEntry's.
When you push a new route using Navigator.push() you are inserting the route overlays above the overlays of the last route.
So, when you add an independent Overlay with just Overlay.of(context).insert(myOverlay);
it will always be above any route/overlay managed by the app Navigator (if what you receive from the of() method is the Navigator Overlay).