AppUserRow

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.

imageSource

The source of the profile image.

onClick

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.

imageSource

The source of the profile image.

onClick

Callback when the row is clicked.