锐单电子商城 , 一站式电子元器件采购平台!
  • 电话:400-990-0325

Flutter之TextField输入长度限制

时间:2023-02-03 23:00:00 高压电阻器5w500m

1.引入头文件

import 'package:flutter/services.dart';

2.

限制TextField 输入长度需要inputFormatters 属性及属性值:LengthLimitingTextInputFormatter(6)

代码如下

TextField(    style: TextStyle(fontSize: ScreenUtil().setWidth(16), color: Colors.black),    controller: _controller,//控制器    decoration: InputDecoration(      hintText: 请输入标题,      hintStyle: TextStyle( fontWeight: FontWeight.w500, fontSize: ScreenUtil().setWidth(20), color: Colors.grey[400]),      border: InputBorder.none,    ),    inputFormatters: [      LengthLimitingTextInputFormatter(6)//限制长度    ],    onChanged: (v){          // textField回调输入内容      }, )),


锐单商城拥有海量元器件数据手册IC替代型号,打造电子元器件IC百科大全!

相关文章