<Navigation drawer below TopAppBar in Jetpack Comp...
# stackoverflow
u
Navigation drawer below TopAppBar in Jetpack Compose I am using Jetpack Compose for developing one app which contains multiple screens and we can navigate to them using Navigation Drawer. How can I put my navigation drawer below TopAppBar ( or Toolbar in Android). Below is the gif for the issue:

https://i.stack.imgur.com/4H7Jj.gif

Below is the composable function for my screen: fun Home(navController: NavHostController) { val scaffoldState = rememberScaffoldState() val coroutineScope...