Emoji Reacted User List
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
user List
The list of users who reacted to the message.
modifier
The modifier to be applied to the list.
emoji Reacted User Item
The composable function that provides the item for displaying each user.