I know with Navigation Component, you can easily set up your toolbar
to work with it (https://developer.android.com/guide/navigation/navigation-ui#create_a_toolbar).
You call setupWithNavController
and it all magically happens. Then, you get a back arrow whenever you aren't at the start destination.
I am currently working with Jetpack Compose and I'm still new to it. I'm trying to see if navigation component is able to do something similar with the TopAppBar
in a Scaffold
.
Is there an easy way to set up the nav component with the TopAppBar
, or do my navigation icons (back arrows) need to be done manually (call navController.popBackStack
as the onClick
for these icons)?