美文网首页
flutter: 输入框

flutter: 输入框

作者: ChaosHeart | 来源:发表于2020-09-04 09:08 被阅读0次
    //赋新值
    //                  _noController.text = numberStr;
    //                  //改变字体颜色
    //                  _noController.buildTextSpan(
    //                    style: TextStyle(color: Colors.black87),
    //                  );
    //                  //选中状态
    //                  _noController.selection = TextSelection(
    //                    baseOffset: 0,
    //                    extentOffset: numberStr.length,
    //                  );
    //                  //设置光标位置在最后
    //                  _noController.selection = TextSelection.fromPosition(
    //                    TextPosition(
    //                      affinity: TextAffinity.downstream,
    //                      offset: numberStr.length,
    //                    ),
    //                  );
    

    相关文章

      网友评论

          本文标题:flutter: 输入框

          本文链接:https://www.haomeiwen.com/subject/ptvsrktx.html