-
-
Save KatieBarnett/c48185433737579f74c65c06f76811ae to your computer and use it in GitHub Desktop.
Collapsable single element list
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
Scaffold( | |
topBar = {...}, | |
modifier = modifier.nestedScroll(scrollBehavior.nestedScrollConnection) | |
) { innerPadding -> | |
Box(contentAlignment = Alignment.Center, | |
modifier = Modifier.fillMaxSize().padding(innerPadding)) { | |
Column(modifier = Modifier.verticalScroll(rememberScrollState())) { | |
Text(stringResource(id = R.string.empty_list_text)) | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment