add enabled and textOverflow

This commit is contained in:
Salvatore Giordano
2020-03-08 23:17:40 +01:00
parent 4b0ff287f9
commit ad89d3ac54
3 changed files with 41 additions and 18 deletions

View File

@@ -76,6 +76,21 @@ class _MyAppState extends State<MyApp> {
),
),
),
SizedBox(
width: 100,
height: 60,
child: Padding(
padding: const EdgeInsets.all(8.0),
child: CountryCodePicker(
enabled: false,
onChanged: print,
initialSelection: 'TF',
showCountryOnly: true,
showOnlyCountryWhenClosed: true,
favorite: ['+39', 'FR'],
),
),
),
],
),
),