EmojiListDialog

fun EmojiListDialog(message: UikitBaseMessage, onEmojiClick: (UiKitEmoji, Boolean) -> Unit, onDismiss: () -> Unit, modifier: Modifier = Modifier, emojiList: @Composable () -> Unit = { EmojiList( message = message, isDetailDialog = true, onEmojiClick = { emoji, isAdded -> onEmojiClick(emoji, isAdded) }, onEmojiMoreButtonClick = { } ) })

A dialog that displays a list of emojis for a message.

Since

1.2.0

Parameters

message

The message to which the emojis belong.

onEmojiClick

The callback for when an emoji is clicked.

onDismiss

The callback for when the dialog is dismissed.

modifier

The modifier to be applied to the dialog.

emojiList

The composable function that provides the list of emojis.