navigation-keep-fragment-sample icon indicating copy to clipboard operation
navigation-keep-fragment-sample copied to clipboard

Results 13 navigation-keep-fragment-sample issues
Sort by recently updated
recently updated
newest added

I have got error when navigate to other destination by action. `Navigation action/destination xxx.yyy:id/action_open_detail cannot be found from the current destination` What's wrong here? Have any suggest to solve this...

Hi, When i try to pop back, it is not working on keep_state_working

First, thanks for sharing the great navigation sample. Adding a logger as follows ... ```kotlin class DashboardFragment : Fragment() { // ... override fun onCreateView(...): View? { Log.d("DashboardFragment", findNavController().currentDestination?.label.toString()) }...

Test ```kotlin navController.addOnDestinationChangedListener { _, destination, _ -> Log.d(TAG, "addOnDestinationChangedListener" + destination.id) //toolbar.title = navController.currentDestination?.label } ``` onlly call once time **I try this, but no 100% work ** change...

When I change the tab from bottom navigation view, I think the layout is shrinking to 0 width and 0 height. I found out when I print the view field...

This also prevents the app from crashing when the destination fragment has arguments.

Hi! I really liked this project! One question, how will you include navigation, I mean the back button in the the action bar of only one of the tabs of...