Home > Back-end >  How can I build a navbar with dropdown buttons by using Flutter?
How can I build a navbar with dropdown buttons by using Flutter?

Time:09-21

I'm building a responsive web navbar using Flutter. I want that some of the textbuttons, when I hover them they should show the dropdown other buttons below. Is this possible to create? If yes, please can you show me some code so I can use it in my project?

CodePudding user response:

Flutter SDK contains a DropdownButton in the material package https://api.flutter.dev/flutter/material/DropdownButton-class.html

  • Related