skip to Main Content

Make Flutter DropdownMenu Smaller

I'm attempting to reduce the height of a Dropdown menu, I have tried in this way: SizedBox( height: 30, child: Container( decoration: BoxDecoration(color: Colors.white), child: DropdownMenu<String>( // inputDecorationTheme: InputDecorationTheme(alignLabelWithHint: ), textStyle: TextStyle(fontSize: 10), inputDecorationTheme: InputDecorationTheme( isCollapsed: true ), dropdownMenuEntries: […

VIEW QUESTION
Back To Top
Search