Fintasys / emoji_picker_flutter

A Flutter package that provides an Emoji picker widget with 1500+ emojis in 8 categories.
MIT License
164 stars 125 forks source link

add emoji inside text field #68

Closed hatemragab closed 2 years ago

hatemragab commented 2 years ago

how can I add emoji not at the end of the text field what if the user needs to add emoji inside text word or after the text field cursor

hatemragab commented 2 years ago

Fixed

  void onEmojiSelected(Emoji emoji) {
    String suffixText = text.substring(textOffset);
    String prefixText = text.substring(0, textOffset);
    textEditingController.text = prefixText + emoji.emoji + suffixText;
    textEditingController.selection = TextSelection.fromPosition(
      TextPosition(
        offset: textOffset,
      ),
    );
     textOffset = textOffset+2;
  }