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
default options go like this:
Navigation.setDefaultOptions({ animations: { setRoot: { enter: { scaleX: { from: 0.8, to: 1, duration: 500, }, scaleY: { from: 0.8, to: 1, duration: 500, }, }, exit: { translationY: { from: 0, to: -height, }, }, }, }, });
the animations works perfectly on android but not on iOS
The text was updated successfully, but these errors were encountered:
@yogevbd I use version 7.14.0 and setRoot animation still does not work ?
7.14.0
setRoot
Sorry, something went wrong.
scaleX
scaleY
#7807 fixes this issue, thanks to @oblador. Released with RNN v7.39.1 (latest).
Successfully merging a pull request may close this issue.
default options go like this:
Navigation.setDefaultOptions({
animations: {
setRoot: {
enter: {
scaleX: {
from: 0.8,
to: 1,
duration: 500,
},
scaleY: {
from: 0.8,
to: 1,
duration: 500,
},
},
exit: {
translationY: {
from: 0,
to: -height,
},
},
},
},
});
the animations works perfectly on android but not on iOS
The text was updated successfully, but these errors were encountered: