Question: Route vs StackRoute vs TabsRoute?
cpsubrian opened this issue · 1 comments
cpsubrian commented
Coming from heavy react-router
web usage, and being fairly new to react-native
development, it's not entirely clear to me what the difference between the three types of <Route>
objects are?
cpsubrian commented
Somewhat answered my own question via experimentation.
- It would seem that at the parent level you MUST use
TabsRoute
orStackRoute
in order to dictate what type of animation to use. - Direct children of either of those can just be plain
Route
routes.
Am I missing anything?