How do I remove content padding from TextField?

后端 未结 10 1701
深忆病人
深忆病人 2021-02-05 01:28

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

10条回答
  •  清歌不尽
    2021-02-05 02:14

    You can use contentPadding of InputDecoration. Here is sample code

    TextField(
       maxLines: 8,
       decoration: InputDecoration(
          contentPadding: EdgeInsets.symmetric(vertical: 5),
          labelText: 'Description',
          labelStyle: txtHintStyle,
       )
     )
    

提交回复
热议问题