I'm working on phone number textfield, so for i got
i want it like this (without icon)
CodePudding user response:
Try below code hope its helpful to you.refer package
CodePudding user response:
I've just written this:
InternationalPhoneNumberInput(
onInputChanged: (val) {},
inputDecoration: InputDecoration(
focusedBorder: OutlineInputBorder(
borderSide: BorderSide(
width: 0.0,
),
),
enabledBorder: InputBorder.none,
),
),
and it seems like these:
But I couldn't test it on android. Can you try this?