gpt4 book ai didi

user-interface - Flutter:如何移动文本字段字符计数器?

转载 作者:行者123 更新时间:2023-12-03 02:48:38 25 4
gpt4 key购买 nike

标题很好地总结了这个问题。我有一个 TextFieldmaxLength: 250这是它的样子:

enter image description here

有没有办法将计数器放在其他地方?最好在发送按钮的左侧,但也可能在 TextField 的上方和左侧.有任何想法吗?谢谢!

可能没有必要,但这是我的代码:

TextField(
controller: inputTextEditingController,
focusNode: inputFocusNode,
style: TextStyle(color: Platform.isAndroid ? Colors.green : Colors.blue, height: 0.8),
maxLength: 250,
maxLines: null,
decoration: InputDecoration(
contentPadding: const EdgeInsets.fromLTRB(20, 15, 0, 15),
border: OutlineInputBorder(
borderRadius: BorderRadius.circular(28)),
focusedBorder: OutlineInputBorder(
borderSide: BorderSide(color: Platform.isAndroid ? Colors.green : Colors.blue),
borderRadius: BorderRadius.circular(28)),
suffixIcon: IconButton(
onPressed: _handleSubmitted,
icon: Padding(
padding: const EdgeInsets.fromLTRB(0, 0, 20, 0),
child: Icon(Icons.send,
color: inputFocusNode.hasFocus
? Platform.isAndroid ? Colors.green : Colors.blue
: Colors.black54),
),
),
hintText: "Say something!",
hintStyle: inputFocusNode.hasFocus
? TextStyle(color: Platform.isAndroid ? Colors.green : Colors.blue, fontSize: 16)
: TextStyle(color: Colors.black54)),

最佳答案

您需要构建和传递您自己的计数器作为 TextField 小部件的 buildCounter 参数。

TextField(
maxLength: 250,
buildCounter: (_, {currentLength, maxLength, isFocused}) => Padding(
padding: const EdgeInsets.only(left: 16.0),
child: Container(
alignment: Alignment.centerLeft,
child: Text(currentLength.toString() + "/" + maxLength.toString())),
),
)

关于user-interface - Flutter:如何移动文本字段字符计数器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58019207/

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