Navigating in a navigation drawer with composables
I am trying to set the navigation so that you can with the drawer menu navigate between composables when pressing the icons/text in the drawer. But when I click the icons/texts nothing happens, no navigation to the respective screens are achieved! I have created screens for the respective one. How can I make a successful navigation ?
This is my set-up so far:
MainDrawer layout:
@Composable
fun MainDrawer() {
val scaffoldState = rememberScaffoldState()
val scope =...