-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Need help to understand how transition works #59
Comments
Try a StackRoute with path |
Thank you @jonathanewerner, but if I do this, |
I tried something like that :
But now |
This is actually related to #56, the only solution I found was to show a modal for the "stacked" routes inside the tabs route, that way you can style them the way you want. Edit: The downside of showing a modal is that you cant have a url for it, unless you create the modal inside the view then handle the opening/closing with the changes in the url, this is something i was thinking to do, but I have not needed yet. So if you do, please post the code ;-) PS. I can't see the example, check the link. |
Yea the link doesn't work. |
I have the same question. How can I have no animation between tabs and stack animation in one of them? <Router>
<TabsRoute path='/' component={UI}>
<StackRoute path='tab1' component={Container} transition='none'>
<IndexRoute component={screens.Portfolio} />
<Route path='/register' component={screens.Register} />
</StackRoute>
<Route path='tab2' component={screens.Info} />
<Route path='tab3' component={screens.Info} />
<Route path='tab4' component={screens.Info} />
</TabsRoute>
</Router> And is it possible to not reset stack state after switching to another tab? |
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 ?
The text was updated successfully, but these errors were encountered: