custom_dropdown_flutter 0.0.1
custom_dropdown_flutter: ^0.0.1 copied to clipboard
customise the dropdown, adjust according to you.
Custom_DropDown_FLutter
Custom_dropdown_flutter is the customize the drop down that always open in downside of field.
Getting started
To use this package, add Custom_DropDown_Flutter as a dependency in your pubspec.yaml file.
Usage
Minimal example:
CustomDropDown(
itemsList: [
"Apple",
"Oranges",
"Grapes",
"Mango",
"Papaya",
"Kiwi",
],
),
Custom settings:
CustomDropDown(
borderRadiusBelow: 12,
borderRadiusTop: 15,
hintText: "select Fruits",
icons: Icons.arrow_downward_outlined,
menuBackColor: Colors.yellow,
buttonBackColor: Colors.red,
style: TextStyle(fontSize: 16,color: Colors.white),
itemsList: [
"Apple",
"Oranges",
"Grapes",
"Mango",
"Papaya",
"Kiwi",
],
),