您的位置:首页 > 财经 > 金融 > 成长之路Flutter中的TextField组件

成长之路Flutter中的TextField组件

2025/4/3 19:11:21 来源:https://blog.csdn.net/weixin_44619684/article/details/139261156  浏览:    关键词:成长之路Flutter中的TextField组件

TextField组件本身具备多种属性,支持很多参数设置来实现不同样式效果。
TextField组件可直接上手使用,但默认样式和输入规则并不一定是需求开发中想要的(实话说默认样式并不好看)。下面就通过Flutter TextField组件属性介绍来自定义属于自己的输入框吧。

Flutter中文网

Flutter开发

基础功能

obscureText: true表示隐藏输入内容,类似密码输入
readOnly: true表示输入框禁止输入
textCapitalization:控制输入内容大小写(words 首字母大写、sentences 句子首字母大写、characters 所有字母大写),可能存在兼容性问题会不生效。
minLines & maxLines: 最小行数和最大行数设置,若只设置最大行数输入框高度就是maxLines的高度,否则是minLines的高度。
maxLength: 输入字符限制器。在输入框下方会出现输入字符数量(一般也不希望透出计数)

switch (theme.platform) {case TargetPlatform.iOS:final CupertinoThemeData cupertinoTheme = CupertinoTheme.of(context);forcePressEnabled = true;textSelectionControls ??= cupertinoTextSelectionControls;paintCursorAboveText = true;cursorOpacityAnimates = true;cursorColor ??= selectionTheme.cursorColor ?? cupertinoTheme.primaryColor;selectionColor = selectionTheme.selectionColor ?? cupertinoTheme.primaryColor.withOpacity(0.40);cursorRadius ??= const Radius.circular(2.0);cursorOffset = Offset(iOSHorizontalOffset / MediaQuery.of(context).devicePixelRatio, 0);autocorrectionTextRectColor = selectionColor;break;......case TargetPlatform.android:case TargetPlatform.fuchsia:forcePressEnabled = false;textSelectionControls ??= materialTextSelectionControls;paintCursorAboveText = false;cursorOpacityAnimates = false;cursorColor ??= selectionTheme.cursorColor ?? theme.colorScheme.primary;selectionColor = selectionTheme.selectionColor ?? theme.colorScheme.primary.withOpacity(0.40);break;

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com