EmojiSelector

EmojiSelector

đź“”
This component is in an experimental state; you can use it in your app. However, we may modify it, and it may even have breaking changes in the future.

The EmojiSelector component provides users with a graphical interface to browse, search and select emojis to insert into text fields, messages, or other forms of communication.

Properties

autoFocus (default: false)

If this property is set to true, the component gets the focus automatically when displayed.

<App>
  <EmojiSelector autoFocus="true" />
</App>

Events

select

This event is fired when the user selects an emoticon from this component.

<App>
  <HStack var.selected="">
    <EmojiSelector onSelect="(emoji) => { selected = emoji }" />
    <Text value="Selected emoji: {selected}" />
  </HStack>
</App>

Exposed Methods

This component does not expose any methods.

Styling

This component does not have any styles.