K
K
showCountryFlag: false,
dropdownIcon: Icon(
Icons.arrow_drop_down,
color: darkTheme ? Colors.amber.shade400 :
Colors.grey,
),
decoration: InputDecoration(
hintText: "Phone Number",
hintStyle: TextStyle(
color: Colors.grey
),
filled: true,
fillColor: darkTheme ? Colors.black45 :
Colors.grey.shade200,
border: OutlineInputBorder(
borderRadius: BorderRadius.circular(40),
borderSide: BorderSide(
width: 0,
style: BorderStyle.none
)
),
),
initialCountryCode: 'IND',
onChanged: (text) => setState(() {
phonetexteditingcontrolller.text
=text.completeNumber;
})
),