John Reaper
John Reaper

Reputation: 305

Custom widget dropdown

If I do not click:

enter image description here

When I press the button in the red circle:

enter image description here

Hello, I want to ask. What widget can I use to get a design like this? When the red circle is pressed, another menu will appear and can be pressed to go to another menu. I tried using the dropdown button but it doesn't work as I want. I have also used ListTileTheme and ExpansionTile but it still doesn't work as I want. Anyone can share an opinion.

Upvotes: 0

Views: 217

Answers (1)

loomy
loomy

Reputation: 361

Flutter's core dropdown widget works almost exactly like your example, and there is a widget that extends it even further. You should then be able to nest further menus if that's what you need it to do. Flutter DropdownButton2

Upvotes: 1

Related Questions