Skip to content

Instantly share code, notes, and snippets.

@saqib-github-commits
Created August 21, 2023 07:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save saqib-github-commits/b2b1a463d7965a542a2a18d67f1db8cc to your computer and use it in GitHub Desktop.
Save saqib-github-commits/b2b1a463d7965a542a2a18d67f1db8cc to your computer and use it in GitHub Desktop.
@Composable
fun ArticlesScreen(drawerState: DrawerState) {
Scaffold(
topBar = { CustomAppBar(
drawerState = drawerState,
title = "Articles"
) }
) { paddingValues ->
Column(
modifier = Modifier.fillMaxSize().padding(paddingValues),
horizontalAlignment = Alignment.CenterHorizontally,
verticalArrangement = Arrangement.Center
) {
Text(text = " Articles Screen")
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment