-
Notifications
You must be signed in to change notification settings - Fork 387
Open
Description
@composable
fun AccountsSection() {
val focusRequester = remember { FocusRequester() }
LazyVerticalGrid(
modifier = Modifier
.fillMaxSize()
.padding(horizontal = childPadding.start),
columns = GridCells.Fixed(2),
content = {
items(accountsSectionListItems.size) { index ->
AccountsSelectionItem(
modifier = Modifier.focusRequester(focusRequester), What is the purpose of this code? ???
...
)
}
}
)
Metadata
Metadata
Assignees
Labels
No labels