I have problems managing the left arrow which appears in the upper left corner if it is set to true setUpNavigationEnabled. How do you indicate the page to return to? thanks
By using nested @Route paths. If the up navigation is used in the view @Route(“view1/subview”) a navigation to the view with @Route(“view1”) will be initiated.
Ok thank you.
I had a problem because if I have more view like @Route(“view1/detail”) and @Route(“view2/detail”) the algorithm seems to have some problem to choose the right view. I solved by replacing the “detail” with something different, like “view1/detail_view1” and “view2/detail_view2”
Anyway thank you