dropdown_plus 0.0.1 dropdown_plus: ^0.0.1 copied to clipboard
Simple and easy to use Dropdown in forms with search, keyboard navigation, offiline data source, remote data source and easy customization.
dropdown_plus #
Simple and easy to use Dropdown in forms with search, keyboard navigation, offiline data source, remote data source and easy customization.
Getting Started #
Simple Text Dropdown.
TextDropdown({
options: ["Male", "Female"],
decoration: InputDecoration(
border: OutlineInputBorder(),
suffixIcon: Icon(Icons.arrow_drop_down),
labelText: "Dropdown"),
});