EmojiReactedUserList

fun EmojiReactedUserList(userList: List<UikitUser>, modifier: Modifier = Modifier, emojiReactedUserItem: @Composable (UikitUser) -> Unit = { userInfo -> EmojiReactedUserItem(user = userInfo) })

Displays a list of users who reacted to a message with a specific emoji.

Since

1.2.0

Parameters

userList

The list of users who reacted to the message.

modifier

The modifier to be applied to the list.

emojiReactedUserItem

The composable function that provides the item for displaying each user.