gpt4 book ai didi

flutter - 无法从 Flutter 中的 TextField 和 TextFormField 中删除底部填充

转载 作者:行者123 更新时间:2023-12-03 02:44:00 28 4
gpt4 key购买 nike

我有这个小部件:

TextFormField(
controller: _activityName,
autocorrect: true,
textAlign: TextAlign.start,
decoration: InputDecoration(
contentPadding = EdgeInsets.zero,



border: UnderlineInputBorder(

),

hintText: ""),
maxLines: 1,
cursorColor: Colors.white,
),

正如你所看到的,我明确地将填充设置为 0,正如这个答案所说:
How do I remove content padding from TextField?

但我得到的结果是这样的:

enter image description here

正如您在 Text MyActivity 下看到的那样,有很多填充,但我无法摆脱它。
它看起来像一个错误,但我不确定:

这是 flutter 医生:
Flutter (Channel stable, v1.12.13+hotfix.5, on Microsoft Windows [Version 10.0.18362.295], locale en-US)
• Flutter version 1.12.13+hotfix.5 %Flutter path%
• Framework revision 27321ebbad (3 weeks ago), 2019-12-10 18:15:01 -0800
• Engine revision 2994f7e1e6
• Dart version 2.7.0

最佳答案

来自 https://stackoverflow.com/a/59295394/4465386 - 也请查看演示。

这是如何获得 0 填充 textFields:

TextField(
decoration: InputDecoration(
contentPadding: EdgeInsets.all(0),
isDense: true,
),
);

关于flutter - 无法从 Flutter 中的 TextField 和 TextFormField 中删除底部填充,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59512321/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com