Home > front end >  Different kind of dropdown menu in Flutter
Different kind of dropdown menu in Flutter

Time:10-06

I have been trying to make a dropdown widget like this in Flutter. I tried normal dropdown, overlays with text field, and menu. Any tips?

Default Default

Focused

Focused

CodePudding user response:

You can probably accomplish what you are looking for, by using the ExpansionPanelList widget:

enter image description here

Your Result screen after tap -> enter image description here

  • Related