We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi Sergey - looking for another bit of v2 functionality to be added to v3, something like #30.
I'm thinking of an API like
<Navigator animations={{ fadeRight: { start: { opacity: 0, transform: [{ translateX: windowWidth }] }, end: { opacity: 1, transform: [{ translateX: 0 }] }, push: { opacity: 0, transform: [{ translateX: -windowWidth / 3 }] }, pop: { opacity: 1, transform: [{ translateX: 0 }] }, } }}/>
Where push and pop are optional, but get applie:
push
pop
stack[stack.length-1]
stack[stack.length-2]
Can't think of good names for them though... (bottomPush/bottomPop ? topPush/topPop?)
The text was updated successfully, but these errors were encountered:
sergeyshpadyrev
christianchown
No branches or pull requests
Hi Sergey - looking for another bit of v2 functionality to be added to v3, something like #30.
I'm thinking of an API like
Where
push
andpop
are optional, but get applie:stack[stack.length-1]
as the end position when a push/replace/reset happens, and tostack[stack.length-2]
as the end position when a pop happensCan't think of good names for them though... (bottomPush/bottomPop ? topPush/topPop?)
The text was updated successfully, but these errors were encountered: