App User Row
fun AppUserRow(name: StringResource, role: StringResource, modifier: Modifier = Modifier, imageSource: AppImageSource? = null, onClick: () -> Unit? = null)
A user row component typically used in lists or carousels to display name and role/description. This version accepts StringResource for name and role.
Parameters
name
The user's name.
role
The user's role or description.
modifier
The Modifier to be applied to the row.
image Source
The source of the profile image.
on Click
Callback when the row is clicked.
fun AppUserRow(name: String, role: String, modifier: Modifier = Modifier, imageSource: AppImageSource? = null, onClick: () -> Unit? = null)
A user row component typically used in lists or carousels to display name and role/description. This version accepts raw String for name and role.
Parameters
name
The user's name.
role
The user's role or description.
modifier
The Modifier to be applied to the row.
image Source
The source of the profile image.
on Click
Callback when the row is clicked.