Emoji List Dialog
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.
on Emoji Click
The callback for when an emoji is clicked.
on Dismiss
The callback for when the dialog is dismissed.
modifier
The modifier to be applied to the dialog.
emoji List
The composable function that provides the list of emojis.