All app routes are specified in routes.tsx.
The RouterLink component wraps Touchable
and enables navigation to a specific route when pressed. It also supports prefetching the route as it comes into view.
<RouterLink to="/my-route" navigationProps={{ filters: ["my-filter"]}} onPress={onPress}>
{children}
</RouterLink>
Alternatively, navigate can be used to programmatically navigate to a given route.