dropdown_wheel_picker

Creator: coderz1093

Last updated:

0 purchases

dropdown_wheel_picker Image
dropdown_wheel_picker Images

Languages

Categories

Add to Cart

Description:

dropdown wheel picker

Put a short description of the package here that helps potential users
know whether this package might be useful for them.
Features #
List what your package can do. Maybe include images, gifs, or videos.
Getting started #
List prerequisites and provide or point to information on how to
start using the package.
Usage #
Dropdown Item Picker
DropdownItemPicker(
pickerTitle: Text('Countries'),
items: [
Text('China πŸ‡¨πŸ‡³'),
Text('France πŸ‡«πŸ‡·'),
Text('Russia πŸ‡·πŸ‡Ί'),
Text('United Kingdom πŸ‡¬πŸ‡§'),
Text('United States πŸ‡ΊπŸ‡Έ'),
],
onChanged: (value) => print('Selected Country: $value'),
)
copied to clipboard
Dropdown Multi-column Item Picker
DropdownMultiColItemPicker(
pickerTitle: Text('Star Wars'),
multiColItems: [
[
Text('Jedi'),
Text('Empire'),
],
[
Text('Luke'),
Text('Anakin'),
Text('Obi-Wan'),
Text('Han Solo'),
Text('Palpatine'),
]
]
onChanged: (value) => print('Selected Countries: $value'),
)
copied to clipboard
Dropdown Date Picker
DropdownDatePicker(
pickerTitle: Text('Date Picker'),
initialDate: DateTime(2024, 1, 1),
firstYear: 2020,
lastYear: 2025,
onChanged: (value) => print('Selected Date: $value'),
)
copied to clipboard
Dropdown Distance Picker
DropdownDistancePicker(
pickerTitle: Text('Distance Picker'),
onChanged: (value) => print('${value.value} ${value.unit}'),
)
copied to clipboard
Dropdown Time Picker
DropdownTimePicker(
pickerTitle: Text('Time Picker'),
onChanged: (value) => print(value),
)
copied to clipboard
Dropdown Pace Picker
DropdownPacePicker(
pickerTitle: Text('Pace Picker'),
onChanged: (value) => print(value),
)
copied to clipboard
Additional information #
Tell users more about the package: where to find more information, how to
contribute to the package, how to file issues, what response they can expect
from the package authors, and more.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.