how to fit TextFiled inside row > container. i don't why TextField it goes beyond the container and also the height of the textField is not properly adjected. can anyone help...
child: Column(
children: [
Padding(
padding: const EdgeInsets.symmetric(vertical: 30),
child: Container(
decoration: BoxDecoration(
color: Colors.pink,
borderRadius: BorderRadius.circular(50)),
child: Row(
children: [
Icon(Icons.verified_user_outlined),
SizedBox(width: 5),
Container(
width: 200,
height: 30,
color: Colors.orange,
child: TextField(
decoration: InputDecoration(
hintText: 'Enter Your Mobile Number',
errorText: '',
fillColor: Colors.white,
border: OutlineInputBorder(),
),
),
),
],
),
),
),
TextButton(onPressed: () => {}, child: Text("Continue")),
],[![enter image description here][1]][1]