Navigation

Navigation is handled with React Navigation. Out-of-the-box, there are three navigation patterns to get you started:

  1. Stack (views stack on top of each other with a back swipe)

  2. Bottom nav (bottom nav icon buttons to instantly switch between views)

  3. Drawer (sliding nav from the left side)

You can find a full working example of the navigation in router.js

There are other stack varieties available if you need the please refer to the React Navigation documentation for more information.

You can create as many different combinations of stacks with as many views in them as you need. Simply wrap all the stacks inside a container.

Last updated