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 use contentPadding of InputDecoration. Here is sample code
contentPadding
TextField( maxLines: 8, decoration: InputDecoration( contentPadding: EdgeInsets.symmetric(vertical: 5), labelText: 'Description', labelStyle: txtHintStyle, ) )