How to change TextField's height and width?

后端 未结 7 1668
既然无缘
既然无缘 2020-12-13 08:02

How to customise TextField\'s width and height?

7条回答
  •  遥遥无期
    2020-12-13 08:39

    If you use "suffixIcon" to collapse the height of the TextField add: suffixIconConstraints

    TextField(
                        style: TextStyle(fontSize: r * 1.8, color: Colors.black87),
                        decoration: InputDecoration(
                          isDense: true,
                          contentPadding: EdgeInsets.symmetric(vertical: r * 1.6, horizontal: r * 1.6),
                          suffixIcon: Icon(Icons.search, color: Colors.black54),
                          suffixIconConstraints: BoxConstraints(minWidth: 32, minHeight: 32),
                        ),
                      )
    

提交回复
热议问题