I am new to flutter and I am creating login form, for that I have used TextField and added prefix icon but I am getting some extra spaces in between textfields (user id and pin
You can try this hack by reducing height of TextField
TextField
SizedBox( height: 44, // set this child: TextField(), )