-
Notifications
You must be signed in to change notification settings - Fork 101
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Popups/Calendar is not coming over the overlay #86
Comments
Yes, this is the expected behivior, since the global overlay should on the top of all app widgets(include dialog). This situation seem the same as #83 (comment) According to your UI diagram, I think it is more appropriate for you to use dialog instead overlay to pop up widget in this scenario. |
I want to use overlay in my design, is there a way with which i can bound the dialog box to the overlay. i.e. the dialog box renders inside of the overlay, not behind it. |
DropDownButton also giving the same result. i programmed the DropDownButton inside the a widget and called it inside the overlay. as soon as i tap the button the menu is open behind the overlay instead of opening on top of it. |
Because global overlay in the widget hierarchy is more front to screen than the other app widgets (normal page, dialog, popup), so they are always show behind the overlay. The only way is like #83 , use
|
it is still behind the overlay. Can you give me a quick implementation, maybe I'm not understanding that properly. |
Maybe your using the wrong |
you wanna come on a google meet? it'll be way easier and quicker that way.. |
No, I don't like talk.
accroding the picture, you are not using the It should be |
Description
If we put a calendar/Datepicker such as ShowDatePickerhttps://api.flutter.dev/flutter/material/showDatePicker.html button inside the overlay, the calendar popups behind the overlay which is not accessible. We have to close the overlay to access the calendar.
To Reproduce
Steps to reproduce the behavior:
Expected behaviour
The expected behaviour of the similar situation should be that the calendar stacks on top of the overlay and is accessible also.
Screenshots
Version (please complete the following information):
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: