flutter TextField内容垂直居中

有时候TextField内容无法垂直居中,基本骗过测试可以直接使用contentPadding,这个效果在不同的手机上效果不同。所以,不是上策。

完美解决方案:

1.设置TextField有边框,并设置外边框为透明色
2.设置contentPadding:EdgeInsets.only(top: 0, bottom: 0)

在InputDecoration里面设置

                              contentPadding:EdgeInsets.only(top: 0, bottom: 0),
                              border: OutlineInputBorder(
                                borderSide: BorderSide(
                                  color: Colors.transparent,
                                ),
                              ),
                              enabledBorder: OutlineInputBorder(
                                borderSide: BorderSide(
                                  color: Colors.transparent,
                                ),
                              ),
                              disabledBorder: OutlineInputBorder(
                                borderSide: BorderSide(
                                  color: Colors.transparent,
                                ),
                              ),
                              focusedBorder: OutlineInputBorder(
                                borderSide: BorderSide(
                                  color: Colors.transparent,
                                ),
                              ),

你可能感兴趣的:(flutter TextField内容垂直居中)