gpt4 book ai didi

flutter - 在单个 TextField 中为多行添加下划线 - Flutter/Dart

转载 作者:行者123 更新时间:2023-12-03 03:52:36 29 4
gpt4 key购买 nike

希望有一个 TextField,它有多行,但每行都有一个下划线。键入文本时,它应该继续到下一行而不需要返回键。

当前:

TextField(
maxLines: 2,
decoration: InputDecoration(
enabledBorder: new UnderlineInputBorder(
borderSide: BorderSide(
color: Colors.black,
width: 1.0,
style: BorderStyle.solid),
),
),
)

当前输出:

enter image description here

期望的输出:

enter image description here

最佳答案

我想这对你有用

TextField(
keyboardType: TextInputType.multiline,
minLines: 100,
maxLines: 500,
style: TextStyle(
decoration: TextDecoration.underline,
),
decoration: InputDecoration(
enabledBorder: InputBorder.none,
hintText: 'Notes.....',
hintStyle: TextStyle(color: Colors.black87),
),
),

如果您仍想更改下划线的颜色、类型或密度,请使用 decorationStyledecorationColordecorationThickness 属性.

关于flutter - 在单个 TextField 中为多行添加下划线 - Flutter/Dart,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62570207/

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