Flutter TextField 垂直高度减少isDense

问题描述

宽度较小的情况下,TextField输入过长的时候,高度会显示不完整。

如下图:


flutter.jpeg

解决办法:

decoration: InputDecoration(
                  hintText: '请输入数值',
                  //主要是这个参数设置为true,减少垂直高度消耗
                  isDense: true,
                  labelStyle: style1,
                  border: InputBorder.none,
                  hintStyle: style1
                ),

你可能感兴趣的:(Flutter TextField 垂直高度减少isDense)