dropdown_button2 icon indicating copy to clipboard operation
dropdown_button2 copied to clipboard

Flutter's core Dropdown Button widget with steady dropdown menu and many other features.

Results 62 dropdown_button2 issues
Sort by recently updated
recently updated
newest added

I am making a dektop app. Does DropdownButton2 support keyboard selection? In the standard DropdownButton I can expand the menu by pressing the enter button and then use keyboard up...

question

We're trying to locate an item starting writing in the main control, **without showing the dropdown list**. I mean, when the dropdownbutton gets the focus, the user starts writing 'Colu'......

enhancement

When there is insufficient space at the bottom, I would like the dropdown menu to automatically switch to the top of the button for safe display.

question

You can reproduce it, if you simply replace the items list in your examples with this: ` final List items = List.generate(2500, (i) => '$i. item');` At the beginning, the...

I have added to the button a prefix Icon now the Text of the menu is going to the border, I have try to add some padding and move it...

I have a custom text form field widget, and I created a custom form field dropdown widget using DropdownButtonFormField2. In the image the top is the custom form field showing...

Hi, I am using your library, and I am really enjoying it so far. Is it possible to add a leading icon to the button, as in the official [DropdownMenu...

enhancement

I wanted to show a list of items but add an option at the top of the list (first DropdownMenuItem) that removes the selection. So I mapped [null, ...items] and...

Hi, I have the following and simple DropdownMenuItem: DropdownMenuItem( value: "", child: StatefulBuilder(builder: (context, menuSetState) { return Text("child", style: Colors.black); }), ) And when the menu item is hovered (overlay...

I wanted to implement list with dividers, so I used `customHeights` for `MenuItemStyleData`. If I add vertical padding along with customHeights it causes odd behaviour. Like, each time dropdown is...