博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Flutter 支持图片以及特殊文字的输入框(一)使用方法
阅读量:5887 次
发布时间:2019-06-19

本文共 5920 字,大约阅读时间需要 19 分钟。

相关文章

最近有客户Alex提出Flutter输入框需要支持支持图片和特殊文字样式,就跟QQ,微信,微博一样,可以插入表情,@xxx或者一个话题. 每天追更,每天都在群里@我(FlutterCandies QQ群:181398081),就差点就把他禁言了。但是我没有这样做,客户就是上帝,因为之前做过,假装感觉应该很简单,悄悄在空闲的时候就动手做起来了。

本篇只介绍下用法,下一篇再讲讲开发中的辛酸历程,先上效果图。

使用步骤

关注,点赞,转发,送飞机

pub 搜索 extended_text_field

github 地址:

定义自己的特殊文字

比如表情

我这里定义的格式是比如[1],就代表是表情1(就是你对应的表情图片).

class EmojiText extends SpecialText {  static const String flag = "[";  final int start;  EmojiText(TextStyle textStyle, {
this.start}) : super(EmojiText.flag, "]", textStyle); @override TextSpan finishText() { // TODO: implement finishText var key = toString(); if (EmojiUitl.instance.emojiMap.containsKey(key)) { //fontsize id define image height //size = 30.0/26.0 * fontSize final double size = 20.0; ///fontSize 26 and text height =30.0 //final double fontSize = 26.0; return ImageSpan(AssetImage(EmojiUitl.instance.emojiMap[key]), actualText: key, imageWidth: size, imageHeight: size, start: start, deleteAll: true, fit: BoxFit.fill, margin: EdgeInsets.only(left: 2.0, top: 2.0, right: 2.0)); } return TextSpan(text: toString(), style: textStyle); }}class EmojiUitl { final Map
_emojiMap = new Map
(); Map
get emojiMap => _emojiMap; final String _emojiFilePath = "assets"; static EmojiUitl _instance; static EmojiUitl get instance { if (_instance == null) _instance = new EmojiUitl._(); return _instance; } EmojiUitl._() { for (int i = 1; i < 49; i++) { _emojiMap["[$i]"] = "$_emojiFilePath/$i.png"; } }}复制代码

再举一个

比如 @法的空间

以@为开始标志,空格为结束标志

class AtText extends SpecialText {  static const String flag = "@";  final int start;  /// whether show background for @somebody  final bool showAtBackground;  final BuilderType type;  AtText(TextStyle textStyle, SpecialTextGestureTapCallback onTap,      {
this.showAtBackground: false, this.type, this.start}) : super(flag, " ", textStyle, onTap: onTap); @override TextSpan finishText() { // TODO: implement finishText TextStyle textStyle = this.textStyle?.copyWith(color: Colors.blue, fontSize: 16.0); final String atText = toString(); if (type == BuilderType.extendedText) return TextSpan( text: atText, style: textStyle, recognizer: TapGestureRecognizer() ..onTap = () { if (onTap != null) onTap(atText); }); return showAtBackground ? BackgroundTextSpan( background: Paint()..color = Colors.blue.withOpacity(0.15), text: atText, actualText: atText, start: start, deleteAll: false, style: textStyle, recognizer: type == BuilderType.extendedText ? (TapGestureRecognizer() ..onTap = () { if (onTap != null) onTap(atText); }) : null) : SpecialTextSpan( text: atText, actualText: atText, start: start, deleteAll: false, style: textStyle, recognizer: type == BuilderType.extendedText ? (TapGestureRecognizer() ..onTap = () { if (onTap != null) onTap(atText); }) : null); }}复制代码

定义文字解析帮助类

必须实现createSpecialText方法,这样才知道你有哪些特殊文字

一个是build的方法,可选实现。如果你自己实现了要注意,特殊TextSpan必须放在返回的TextSpan的children里面,我只会遍历这一层,不会再去查找children的children了。

class MySpecialTextSpanBuilder extends SpecialTextSpanBuilder {  /// whether show background for @somebody  final bool showAtBackground;  final BuilderType type;  MySpecialTextSpanBuilder(      {
this.showAtBackground: false, this.type: BuilderType.extendedText}); @override TextSpan build(String data, {TextStyle textStyle, onTap}) { // TODO: implement build var textSpan = super.build(data, textStyle: textStyle, onTap: onTap); //for performance, make sure your all SpecialTextSpan are only in textSpan.children //extended_text_field will only check SpecialTextSpan in textSpan.children return textSpan; } @override SpecialText createSpecialText(String flag, {TextStyle textStyle, SpecialTextGestureTapCallback onTap, int index}) { if (flag == null || flag == "") return null; // TODO: implement createSpecialText ///index is end index of start flag, so text start index should be index-(flag.length-1) if (isStart(flag, AtText.flag)) { return AtText(textStyle, onTap, start: index - (AtText.flag.length - 1), showAtBackground: showAtBackground, type: type); } else if (isStart(flag, EmojiText.flag)) { return EmojiText(textStyle, start: index - (EmojiText.flag.length - 1)); } else if (isStart(flag, DollarText.flag)) { return DollarText(textStyle, onTap, start: index - (DollarText.flag.length - 1), type: type); } else if (isStart(flag, ImageText.flag)) { return ImageText(textStyle, start: index - (ImageText.flag.length - 1), type: type, onTap: onTap); } return null; }}enum BuilderType { extendedText, extendedTextField }复制代码

使用ExtendedTextField

是不是炒鸡简单,这样你的文字就会自动转换为对应的特殊文字类型了

ExtendedTextField(            specialTextSpanBuilder: MySpecialTextSpanBuilder(                showAtBackground: true, type: BuilderType.extendedTextField),复制代码

限制

跟上面讲的一样,有三种限制。

  • 不支持文字从右到左,也就是不支持TextDirection.rtl。原因是TextPainter 给的图片的位置,非常奇怪,完全没法搞。当然我会继续跟进,也许哪天官方修好了呢?
  • 不支持那种密码的输入样式解析成特殊TextSpan,也就是不支持obscureText 为true。没啥好解释,文字都变成******了,也没必要解析了。
  • 代码是基于flutter 版本1.5.7,可能在不同的flutter 版本下面会出现编译错误,如果出现,希望老板们能根据自己的版本进行更正。我这边不太可能都适配到每个flutter 版本,我会尽量让 在flutter 的稳定版本上面没有错误,希望谅解。

最后放上 ,如果你有什么不明白或者对这个方案有什么改进的地方,请告诉我,欢迎加入,一起生产可爱的Flutter 小糖果(QQ群:181398081)

Flutter Candies全家桶

最最后放上全家桶,真香。

custom flutter candies(widgets) for you to easily build flutter app, enjoy it.

转载于:https://juejin.im/post/5ccc25156fb9a0320f7df543

你可能感兴趣的文章
正确看待大数据
查看>>
Facebook通过10亿单词构建有效的神经网络语言模型
查看>>
发展大数据不能抛弃“小数据”
查看>>
中了WannaCry病毒的电脑几乎都是Win 7
查看>>
学生机房虚拟化(九)系统操作设计思路
查看>>
nginx报错pread() returned only 0 bytes instead of 4091的分析
查看>>
质数因子
查看>>
Spring源码浅析之事务(四)
查看>>
[转载] Live Writer 配置写 CSDN、BlogBus、cnBlogs、163、sina 博客
查看>>
SQL:连表查询
查看>>
MySQL日期函数、时间函数总结(MySQL 5.X)
查看>>
c语言用尾插法新建链表和输出建好的链表
查看>>
高性能 Oracle JDBC 编程
查看>>
java 中ResultSet可以获取的数据类型及返回值类型列表
查看>>
ubuntu 13 安装SH程序
查看>>
支付宝升级延时到账功能
查看>>
ghost后只剩下一个盘的数据寻回方法
查看>>
输入输出练习
查看>>
Git commit message和工作流规范
查看>>
java面试。答案源于网上
查看>>