I’m trying to figure out the use cases when one should use NavigationView.
Could someone give me some examples?
I’m trying to figure out the use cases when one should use NavigationView. Could
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Navigation view is what most people used for straight forward cases.
Navigation view automatically controls the history and back buttons for the navigation and cleans up when a panel is popped out of view.
Some applications have a twisted navigation, where the back button might not always take the person to the immediate back panel. Also in some cases, we might want to show a single panel out of a collection based on a condition. This can be easily done using a panel with layout as ‘card’. If you use the navigation view for these situations, it might be a bit overwork to recreate the same views every time.