How do I remove content padding from TextField?

后端 未结 10 1728
深忆病人
深忆病人 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:13

    By applying minus padding by using

    transform: Matrix4.translationValues(-10.0, 0.0, 0.0),
    

    put above line inside the icon container

    TextFormField(
              keyboardType: TextInputType.number,
              style: new TextStyle(color: Colors.white, fontSize: 17),
              decoration: new InputDecoration(
                  prefixIcon: Container(
                    transform: Matrix4.translationValues(-10.0, 0.0, 0.0),
                    child: Icon(
                      Icons.vpn_key,
                      color: Colors.white,
                    ),
                  ),
                  labelText: "Enter Password",
                  labelStyle: new TextStyle(color: Colors.white)),
            ),
    

提交回复
热议问题