Flutter 支持圖片以及特殊文字的輸入框(一)使用方法

extended_text_field 相關文章

最近有客戶Alex提出Flutter輸入框需要支持支持圖片和特殊文字樣式询枚,就跟QQ垫卤,微信,微博一樣藤乙,可以插入表情媒殉,@xxx或者一個話題. 每天追更,每天都在群里@我(FlutterCandies QQ群:181398081),就差點就把他禁言了盅粪。但是我沒有這樣做,客戶就是上帝苞氮,因為之前做過Extended Text湾揽,假裝感覺應該很簡單,悄悄在空閑的時候就動手做起來了。

image

本篇只介紹下用法库物,下一篇再講講開發(fā)中的辛酸歷程霸旗,先上效果圖。

image
image

使用步驟

關注民晒,點贊精居,轉發(fā),送飛機

pub 搜索 extended_text_field

github 地址:extended_text_field

定義自己的特殊文字

image

比如表情

我這里定義的格式是比如[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<String, String> _emojiMap = new Map<String, String>();

  Map<String, String> 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";
    }
  }
}

再舉一個


image

比如 @法的空間

以@為開始標志靴姿,空格為結束標志

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);
  }
}

定義文字解析幫助類

必須實現(xiàn)createSpecialText方法,這樣才知道你有哪些特殊文字

一個是build的方法磁滚,可選實現(xiàn)佛吓。如果你自己實現(xiàn)了要注意,特殊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),

限制

readme上面講的一樣吱型,有三種限制。

  • 不支持文字從右到左陨仅,也就是不支持TextDirection.rtl津滞。原因是TextPainter 給的圖片的位置,非常奇怪掂名,完全沒法搞据沈。當然我會繼續(xù)跟進,也許哪天官方修好了呢饺蔑?
  • 不支持那種密碼的輸入樣式解析成特殊TextSpan锌介,也就是不支持obscureText 為true。沒啥好解釋猾警,文字都變成******了孔祸,也沒必要解析了。
  • 代碼是基于flutter 版本1.5.7发皿,可能在不同的flutter 版本下面會出現(xiàn)編譯錯誤崔慧,如果出現(xiàn),希望老板們能根據(jù)自己的版本進行更正穴墅。我這邊不太可能都適配到每個flutter 版本惶室,我會盡量讓extended_text_field 在flutter 的穩(wěn)定版本上面沒有錯誤温自,希望諒解。

最后放上 extended_text_field皇钞,如果你有什么不明白或者對這個方案有什么改進的地方悼泌,請告訴我,歡迎加入Flutter Candies夹界,一起生產(chǎn)可愛的Flutter 小糖果(QQ群:181398081)

Flutter Candies全家桶

最最后放上Flutter Candies全家桶馆里,真香。

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

最后編輯于
?著作權歸作者所有,轉載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末可柿,一起剝皮案震驚了整個濱河市鸠踪,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌复斥,老刑警劉巖营密,帶你破解...
    沈念sama閱讀 216,372評論 6 498
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異目锭,居然都是意外死亡卵贱,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 92,368評論 3 392
  • 文/潘曉璐 我一進店門侣集,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人兰绣,你說我怎么就攤上這事世分。” “怎么了缀辩?”我有些...
    開封第一講書人閱讀 162,415評論 0 353
  • 文/不壞的土叔 我叫張陵臭埋,是天一觀的道長。 經(jīng)常有香客問我臀玄,道長瓢阴,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 58,157評論 1 292
  • 正文 為了忘掉前任健无,我火速辦了婚禮荣恐,結果婚禮上,老公的妹妹穿的比我還像新娘累贤。我一直安慰自己叠穆,他們只是感情好,可當我...
    茶點故事閱讀 67,171評論 6 388
  • 文/花漫 我一把揭開白布臼膏。 她就那樣靜靜地躺著硼被,像睡著了一般。 火紅的嫁衣襯著肌膚如雪渗磅。 梳的紋絲不亂的頭發(fā)上嚷硫,一...
    開封第一講書人閱讀 51,125評論 1 297
  • 那天检访,我揣著相機與錄音,去河邊找鬼仔掸。 笑死脆贵,一個胖子當著我的面吹牛,可吹牛的內(nèi)容都是我干的嘉汰。 我是一名探鬼主播丹禀,決...
    沈念sama閱讀 40,028評論 3 417
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼鞋怀!你這毒婦竟也來了双泪?” 一聲冷哼從身側響起,我...
    開封第一講書人閱讀 38,887評論 0 274
  • 序言:老撾萬榮一對情侶失蹤密似,失蹤者是張志新(化名)和其女友劉穎焙矛,沒想到半個月后,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體残腌,經(jīng)...
    沈念sama閱讀 45,310評論 1 310
  • 正文 獨居荒郊野嶺守林人離奇死亡村斟,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 37,533評論 2 332
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了抛猫。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片蟆盹。...
    茶點故事閱讀 39,690評論 1 348
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖闺金,靈堂內(nèi)的尸體忽然破棺而出逾滥,到底是詐尸還是另有隱情,我是刑警寧澤败匹,帶...
    沈念sama閱讀 35,411評論 5 343
  • 正文 年R本政府宣布寨昙,位于F島的核電站,受9級特大地震影響掀亩,放射性物質(zhì)發(fā)生泄漏舔哪。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 41,004評論 3 325
  • 文/蒙蒙 一槽棍、第九天 我趴在偏房一處隱蔽的房頂上張望捉蚤。 院中可真熱鬧,春花似錦炼七、人聲如沸外里。這莊子的主人今日做“春日...
    開封第一講書人閱讀 31,659評論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽盅蝗。三九已至,卻和暖如春姆蘸,著一層夾襖步出監(jiān)牢的瞬間墩莫,已是汗流浹背芙委。 一陣腳步聲響...
    開封第一講書人閱讀 32,812評論 1 268
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留狂秦,地道東北人灌侣。 一個月前我還...
    沈念sama閱讀 47,693評論 2 368
  • 正文 我出身青樓,卻偏偏與公主長得像裂问,于是被迫代替她去往敵國和親侧啼。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 44,577評論 2 353

推薦閱讀更多精彩內(nèi)容