il_ilce

Last updated:

0 purchases

il_ilce Image
il_ilce Images
Add to Cart

Description:

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

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.