EmojiPicker QML Type

A EmojiPicker Component. More...

Import Statement: import

Properties

Signals

Detailed Description

EmojiPicker {
    width: 350
    height: 450

    theme: 'light'
    defaultSkinTone: 'neatral'
    skinTonesDisabled: false
    searchPlaceholder: 'Search'
    searchDisabled: false

    onEmojiClicked: function (emoji) {
        console.log(emoji)
    }
}

Property Documentation

defaultSkinTone : string

Controls the default skin tone, default to 'neutral'

The value can be one of:

ConstantDescription
'neutral'
'1f3fb'✋🏻
'1f3fc'✋🏼
'1f3fd'✋🏽
'1f3fe'✋🏾
'1f3ff'✋🏿

searchDisabled : bool

Controls whether the search is disabled or not, default to false


searchPlaceholder : string

Placeholder text for the search, default to 'Search'


selectedEmoji : string

Emoji selected.


showPreview : bool

Show the emoji preview panel or not.


skinTonesDisabled : bool

Controls whether the skin tones are disabled or not, default to false


theme : string

Controls the theme of the picker.

The theme can be one of:

ConstantDescription
'light'The default
'dark' 

Signal Documentation

emojiClicked(string emoji)

Signal that is called when an emoji is clicked. The function receives the emoji as a parameter.

Note: The corresponding handler is onEmojiClicked.