Navigation refers to the interactions that allow users to be routed across different parts of content within an application
Navigation between different screens or pages in an application is typically a core part of user experience
Navigation can be associated with states, or can act like links to route to different views
Following are some Navigation related applications
A navigation drawer is a UI panel which displays a menu typically containing the primary navigation options for an application
The drawer is hidden by default and appears when a user touches any visible drawer icon or through a gesture like swipe
Platform: Android & iOS
Check Navigation Drawer application
Tabs allow to group content according to some criteria which can be a factor for smooth user experience
Platform: Android & iOS
Check Tabs Application
A Viewpager allows to view the pages of an application by scrolling horizontally or vertically
Platform: Android & iOS
Check Viewpager Application example code
There are multiple ways of passing data between screens like using props of components and implementing local storage
Platform: Android & iOS
Check Viewpager Application example code