flutter: 输入框

2020-09-04  本文已影响0人  ChaosHeart
//赋新值
//                  _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,
//                    ),
//                  );
上一篇 下一篇

猜你喜欢

热点阅读