CountryCodePicker icon indicating copy to clipboard operation
CountryCodePicker copied to clipboard

Add updateCountryCode function

Open AAkira opened this issue 3 years ago • 0 comments

Country codes can be changed programmatically.

final key = GlobalKey<CountryCodePickerState>();
CountryCodePicker(
   key: key,
);

key.currentState.updateCountryCode(CountryCode.fromDialCode('+81'));

AAkira avatar Dec 02 '21 05:12 AAkira