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

`searchMatchFn` not working in `release` mode of app, works in `debug` mode, when search a value contains in `DropdownMenuItem` not working in `release` , in `debug` mode it's works perfect.

question

It would be nice to be able to customize dropdown list layout, on bigger resolutions it is easier to select items without need to scroll. ![image](https://user-images.githubusercontent.com/4129763/192672044-e012688f-919b-4fae-838c-ac1ce0c9556b.png) ![image](https://user-images.githubusercontent.com/4129763/192672342-8fcf78d0-b535-4213-ba5e-70cc3ddcf25d.png)

enhancement

Hi, I'm using dropdown_button2 in a project and it has been wonderful. Thank you for your work on this great library. I've come across a single issue and that is...

bug

Consider the code below: ``` import 'package:dropdown_button2/dropdown_button2.dart'; import 'package:flutter/material.dart'; class DropDownButtonItemsTest extends StatelessWidget { const DropDownButtonItemsTest({super.key}); @override Widget build(BuildContext context) { return DropdownButtonHideUnderline( child: DropdownButtonFormField2( hint: const Text('Items'), value: null,...

The items property is currently wrapped into List widget. It would be nice to have it also wrapped into GridView and/or Wrap widget. That will give us an option to...

![image](https://github.com/AhmedLSayed9/dropdown_button2/assets/28307712/e71a01fa-4168-4b62-b4c6-e8ce8ca68887)

bug

Hello. Is it possible to help me to find a way to display the list above the "helpertext", directly under the textfiel? Someone have a solution or is it an...

This code fails with ```dart DropdownButtonHideUnderline( child: DropdownButton2( value: null, items: [], ), ) ``` `RangeError (index): Invalid value: Valid value range is empty: 0` `DropdownButton2State.build (package:dropdown_button2/src/dropdown_button2.dart:687:30)`

How to set MouseCursor, I don't want to use SystemMouseCursors.click, I want to use SystemMouseCursors.basic, and I see that the internal implementation uses InkWell and sets mouseCursor, But this property...

I've try so many times to fix this case searching item.child didn't work in release mode. because in item child it read as widget text then I add toString().toLowerCase() function....