Home > Net >  How to get a floating box when i click on a button in flutter
How to get a floating box when i click on a button in flutter

Time:05-13

I want to make this type of UI -

enter image description here

enter image description here

Like this dialog opens when we click on "Other Details" and appears just below it. Is there any package for this? Else I will try to use stack and positioned, and will position it as accurate as I can.

CodePudding user response:

You could use the native Flutter Widget screenshot_closed

screenshot_opened

Keep in mind that in the children you could put any widget, even a container, as:

container

  • Related