Created
August 3, 2022 15:08
-
-
Save renanboni/0e5529df77af4e3ca5001ea8738015b8 to your computer and use it in GitHub Desktop.
Main Activity
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
class MainActivity : ComponentActivity() { | |
override fun onCreate(savedInstanceState: Bundle?) { | |
super.onCreate(savedInstanceState) | |
setContent { | |
NestedNavigationTheme { | |
val navController = rememberNavController() | |
RootNav(navController = navController) | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment