create basic about page

This commit is contained in:
Owen LeJeune
2023-06-09 10:05:40 -04:00
parent d62afb2e15
commit db2a6f8abf
6 changed files with 163 additions and 1 deletions

View File

@@ -464,6 +464,11 @@ class MainActivity : MonetCompatActivity() {
doSignInPartTwo = deepLink == NavConstants.AUTH_REDIRECT_PAGE
)
}
composable(
route = MainNavItem.AboutView.route
) {
AboutView(appNavController = appNavController)
}
}
}