widget – Flutter:创建新行后文本字段光标不会关闭

widget – Flutter:创建新行后文本字段光标不会关闭,第1张

概述我正在使用Text Field小部件进行文本编辑: new TextField( controller: _controller, maxLines: null, ), 问题:当我开始一个新行时,光标不会下降,直到我开始输入文本. 这是截图: 我的问题:如何在创建光标后立即将光标移动到新行? 根据: Github 必须修改/lib 我正在使用Text FIEld小部件进行文本编辑:

new TextFIEld(            controller: _controller,maxlines: null,),

问题:当我开始一个新行时,光标不会下降,直到我开始输入文本.

这是截图:

我的问题:如何在创建光标后立即将光标移动到新行?

解决方法 根据: Github

必须修改/lib/src/rendering/editable.dart中的_paintCaret方法,并且textFIEld中的maxlines参数必须为null.它对我有用,希望能成为一个临时解决方案.

/// MODIFIED:voID _paintCaret(Canvas canvas,Offset effectiveOffset) {  assert(_textLayoutLastWIDth == constraints.maxWIDth);  final Offset caretoffset = _textPainter.getoffsetForCaret(_selection.extent,_caretPrototype);  final Paint paint = new Paint()..color = _cursorcolor;  //final Rect caretRect = _caretPrototype.shift(caretoffset + effectiveOffset);  var textLength = 0;  var inputString = '';  if (text.children != null) {    for (var ts in text.children) {      textLength += ts.text.length;      inputString += ts.text;    }  } else if (text.text != null) {    textLength += text.text.length;    inputString += text.text;  }  final Rect tmpRect = _caretPrototype.shift(caretoffset + effectiveOffset);  Rect caretRect = new Rect.fromLTRB(tmpRect.left,_vIEwportExtent - 2.0 -     tmpRect.height,tmpRect.right,_vIEwportExtent - 2.0);  if ((tmpRect.top.abs() - caretRect.top.abs()).abs() > 10) {    caretRect = new Rect.fromLTWH(0.0,caretRect.top,caretRect.wIDth,caretRect.height);  }  if (_selection.extentOffset != textLength){    caretRect = tmpRect;  }  if (caretRect.left != 0 && inputString[_selection.extentOffset - 1] == '\n') {    _selection = new TextSelection.fromposition(new Textposition(offset:      _selection.extentOffset));    caretRect = _caretPrototype.shift(caretoffset + effectiveOffset);  }  canvas.drawRect(caretRect,paint);  if (caretRect != _lastCaretRect) {    _lastCaretRect = caretRect;    if (onCaretChanged != null)      onCaretChanged(caretRect);  }}
总结

以上是内存溢出为你收集整理的widget – Flutter:创建新行后文本字段光标不会关闭全部内容,希望文章能够帮你解决widget – Flutter:创建新行后文本字段光标不会关闭所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1000564.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-21
下一篇 2022-05-21

发表评论

登录后才能评论

评论列表(0条)

保存