ChannelSettingsTopBar

fun ChannelSettingsTopBar(modifier: Modifier = Modifier, onNavigationIconClick: () -> Unit = {}, onActionClick: () -> Unit = {}, title: @Composable () -> Unit = { TopBarTitleText( stringResource(id = R.string.sb_text_header_channel_settings), modifier = Modifier.padding(12.dp) ) }, navigationIcon: @Composable () -> Unit = { BackButton(onClick = onNavigationIconClick) }, action: @Composable () -> Unit = { SendbirdTextButton( text = stringResource(id = R.string.sb_text_button_edit), onClick = onActionClick ) })

The top bar for the ChannelSettingsScreen.

Since

1.0.0-beta.1

Parameters

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_channel_settings.

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 R.string.sb_text_button_edit.

See also