Open
Description
I have a regular Tabs interface, and I want to slide between tabs (this one works).
But when I click for example on a Topic in Topics Tab, I want to go in topics/:topicId
with a horizontal-card-stack (this one is not working).
Am I doing something wrong ?
<Router
history={nativeHistory}
addressBar
>
<TabsRoute
path="/home"
component={Master}
onEnter={userIsLogged}
transition="horizontal-pager"
>
<Route
path="/"
component={Topics}
/>
<Route
path="/favorites"
component={Favorites}
/>
<Route
path="/profile"
component={Profile}
/>
<Route
path="/more"
component={More}
/>
</TabsRoute>
<Route
path="/topics/:topicId"
component={Topic}
transition="horizontal-card-stack"
/>
<Route
path="/questions/:questionId"
component={Question}
transition="horizontal-card-stack"
/>
<Route
path="/login"
component={Login}
onEnter={userIsNotLogged}
/>
</Router>
Metadata
Metadata
Assignees
Labels
No labels