flutter_country_picker
一款支持国家拨号代码的 Flutter 国家/地区选择器小部件。


用法
在你的布局中添加 CountryPicker 组件,并使用 onChanged 回调。
完整示例
@override
Widget build(BuildContext context) {
return new Scaffold(
appBar: new AppBar(
title: Text('Flutter Country Picker Demo'),
),
body: new Center(
child: CountryPicker(
onChanged: (Country country) {
setState(() {
_selected = country;
});
},
selectedCountry: _selected,
),
),
);
}