SelectAccountScreen

fun SelectAccountScreen(    accounts: List<AccountUiModel>,     onAccountClicked: (index: Int, account: AccountUiModel) -> Unit,     modifier: Modifier = Modifier,     columnState: ScalingLazyColumnState = rememberResponsiveColumnState(),     title: String = stringResource(id = R.string.horologist_select_account_title),     defaultAvatar: Paintable? = Icons.Default.AccountCircle.asPaintable())

A screen to display a list of available accounts and to allow the user select one of them.