Last updated:
0 purchases
il ilce
İl İlçe Seçici #
Bu kütüphane Türkiyenin il ve ilçelerini hızlıca şeçtirtmek için yapılmıştır.
Kurulum #
Terminalde çalıştırın.
flutter pub add il_ilce
copied to clipboard
Kullanım #
Drop Down Widget #
IlIlceController controller = IlIlceController();
IlIlceDropDown(
controller: controller,
),
copied to clipboard
Search Dialog #
String? arananIl;
String? arananIlce ;
/// il arama dialogu
ElevatedButton(onPressed: () async {
final value = await IlIlceDialog.instance.selectIl(context);
setState(() {
arananIl = value;
print(value);
});
}, child: Text(arananIl??"İl Ara")),
/// il seçme dialogu
ElevatedButton(
onPressed: () {
if(arananIl==null){
return;
}
IlIlceDialog.instance.selectIlce(context,il:arananIl).then((value) {
setState(() {
arananIlce = value;
});
});}
, child: Text(arananIlce??"İlçe Ara"))
copied to clipboard
License #
MIT
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.