Flutter TextFormField文本在溢出时被隐藏

时间:2020-03-19 19:53:45

标签: flutter

当我达到 TextFormField 的限制时,文本消失了... 我尝试了多个配置,但仍然无法正常工作,我找不到原因。

enter image description here

Dialog(
        shape: RoundedRectangleBorder(
            borderRadius: BorderRadius.circular(6.0)), //this right here
        child: Container(
            height: 400.0,
            child: Column(children: <Widget>[
              Expanded(
                child: new Align(
                    alignment: FractionalOffset.center,
                    child: Row(
                        mainAxisAlignment: MainAxisAlignment.center,
                        children: <Widget>[
                          Icon(Icons.account_circle, color: Colors.blue),
                          Text('Test')
                        ])),
              ),
              Expanded(
                  child: new Padding(
                padding: EdgeInsets.only(left: 10, right: 10, top: 10),
                child: new Align(
                    alignment: FractionalOffset.centerLeft,
                    child: TextFormField(
                        initialValue: _inputs[0],
                        onChanged: (text) {
                          _inputs[0] = text;
                          checkOkEnabled();
                        },
                        autocorrect: false,
                        decoration: InputDecoration(
                            border: OutlineInputBorder(),
                            labelText: 'Mme  / M',
                            hintText: 'test'))),
              )),]))))

两个设备上的相同问题: enter image description here

错误字段也以奇怪的方式被隐藏。

扩展位于高度为400的容器中。

2 个答案:

答案 0 :(得分:0)

您正在将 TextFormField 的高度从其实际高度降低到较小的高度。由于额外的填充,它通常会发生。尝试识别并删除

答案 1 :(得分:0)

InputDecoration中,添加isDense: truecontentPadding: EdgeInsets.zero