onTextInputChanged method

void onTextInputChanged(
  1. String text
)

On text input changed callback

Implementation

void onTextInputChanged(String text) {
  links.clear();
  results.clear();
  utils.searchEmoji(text, widget.state.categoryEmoji).then((value) {
    if (!mounted) return;
    setState(() => _updateResults(value));
  });
}