UserInvitationTopBar

fun UserInvitationTopBar(selectedUserCount: Int, modifier: Modifier = Modifier, onNavigationIconClick: () -> Unit = {}, onActionClick: () -> Unit = {}, title: @Composable () -> Unit = { TopBarTitleText( stringResource(id = R.string.sb_text_header_invite_member), modifier = Modifier.padding(12.dp) ) }, navigationIcon: @Composable () -> Unit = { BackButton(onClick = onNavigationIconClick) }, action: @Composable () -> Unit = { SendbirdTextButton( text = if (selectedUserCount == 0) { stringResource(id = R.string.sb_text_button_invite) } else { "${stringResource(id = R.string.sb_text_button_invite)} ($selectedUserCount)" }, onClick = onActionClick, enabled = selectedUserCount > 0 ) })

The top bar for the UserInvitationScreen.

Since

1.0.0-beta.1

Parameters

selectedUserCount

The number of selected users to display on the top bar's action button.

modifier

The modifier to be applied to the view.

onNavigationIconClick

The handler for when the navigation icon is clicked.

onActionClick

The handler for when the action is clicked.

title

The title Composable to be displayed on the top bar. Defaults to TopBarTitleText with R.string.sb_text_header_invite_member.

navigationIcon

The icon Composable to be displayed on the top bar's navigation icon. Defaults to BackButton.

action

The action Composable to be displayed on the top bar. Defaults to SendbirdTextButton with user selection count.

See also