EmojiReactedUserDialog

fun EmojiReactedUserDialog(defaultReaction: UiKitReaction, reactions: List<UiKitReaction>, channel: UikitGroupChannel, onDismiss: () -> Unit, modifier: Modifier = Modifier, emojiReactionCountItem: @Composable (UiKitReaction) -> Unit = { reaction -> EmojiReactionCountItem( reaction = reaction, modifier = Modifier.padding(8.dp) ) }, emojiReactedUserList: @Composable (List<UikitUser>) -> Unit = { userList -> EmojiReactedUserList( userList = userList ) })

Represents a dialog that displays the list of users who reacted to a message with a specific emoji.

Since

1.2.0

Parameters

defaultReaction

The default reaction to be displayed when the dialog is opened.

reactions

The list of reactions available for the message.

channel

The channel in which the reactions were made.

onDismiss

The callback to be invoked when the dialog is dismissed.

modifier

The modifier to be applied to the dialog.

emojiReactionCountItem

The composable function that provides the item for displaying the reaction count.

emojiReactedUserList

The composable function that provides the list of users who reacted to the message.