Emoji Reacted User Dialog
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
default Reaction
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.
on Dismiss
The callback to be invoked when the dialog is dismissed.
modifier
The modifier to be applied to the dialog.
emoji Reaction Count Item
The composable function that provides the item for displaying the reaction count.
emoji Reacted User List
The composable function that provides the list of users who reacted to the message.