Skip to main content

Navigation

Navigation makes applications more interactive, which helps users navigate in, out, and across the app. Add such navigations to your React app in few simple steps:

Add Navigation

Example

For example, navigate from one page to another, navigate to a different website, or navigate to the page with the select ID option

Example banner

TypeDescription
Page NavigationNavigate to a specifically selected page from the application’s page list
Link NavigationProvide an external link and navigate to it
Section NavigationNavigate to a specifically selected section of the page

While setting up navigation action, you can also pass the data from the current page to the page you are navigating to via API response, Navigation argument, & constant files.

  • API response: If your current page has API integrated which is receiving data in response that you can share that data to the page you're navigating to via API response.

  • Navigation argument: If the current page already has Navigation argument set up. Then you can pass that same data to the page you're navigating to.

  • Constant: If you have added constant files, then you can pass the constant data to the page you are navigating to.

Example banner

Back navigation

Navigate back to the previously visited pages of your application using back navigation.

Example

For example in the below gif we are configuring a button to take us to the previous page.

Example banner



Got a question? Ask here.