A Flutter package for showing a modal that contains country dial code. The user can also search for the available codes and select right from the modal.
Hi, again @fernan542 ! Searching with localized app not working. I've checked your code and there was
availableCountryCodes ..clear() ..addAll( List<CountryCode>.from( baseList.where( (c) => c.code.toLowerCase().contains(query.toLowerCase()) || c.dialCode .toLowerCase() .contains(query.toLowerCase()) || c.name.toLowerCase().contains(query.toLowerCase()), ), ), ); , which is not getting localized name of country code. I've tried to search Singapoore(in English). It's working fine. But when I switched to other languages, it's not giving results
Hi, again @fernan542 ! Searching with localized app not working. I've checked your code and there was
availableCountryCodes ..clear() ..addAll( List<CountryCode>.from( baseList.where( (c) => c.code.toLowerCase().contains(query.toLowerCase()) || c.dialCode .toLowerCase() .contains(query.toLowerCase()) || c.name.toLowerCase().contains(query.toLowerCase()), ), ), ); ,
which is not getting localized name of country code. I've tried to search Singapoore(in English). It's working fine. But when I switched to other languages, it's not giving results