Last updated:
0 purchases
kenya county picker
Kenya_county_picker #
Flutter package that easily picks a kenyan county.
Getting started #
In your library add the following import:
import 'package:kenya_county_picker/kenya_county_picker.dart';
copied to clipboard
Define this function
void _onCountySelected(String county) {
print('Selected county: $county');
}
copied to clipboard
Then you just need to use the widget KenyaCountyPicker
body: Center(
child: KenyaCountyPicker(
onCountySelected: _onCountySelected,
),
),
copied to clipboard
Simply use the selected county
Contributions #
Feel free to contribute to this project.
If you find a bug or want a feature, but don't know how to fix/implement it, please fill an issue.
If you fixed a bug or implemented a feature, please send a pull request.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.