<Navigating between composable's using a Navigatio...
# stackoverflow
u
Navigating between composable's using a Navigation Drawer in Jetpack Compose I am trying to set up navigation for the drawer icons/textfield in jetpack compose but not exactly sure how to do it properly. How can I set the navigation so that whenever I click in one of the Icons I get navigated to that composable screen? This is currently my MainDrawer layout: @Composable fun MainDrawer() { val scaffoldState = rememberScaffoldState() val scope = rememberCoroutineScope() Scaffold( scaffoldState = scaffoldState, topBar = {...