Change Animation timing #1112
-
Is there a way to change the animation timing while navigating ? I explore the documentation but didn't find anything in it. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
Hi @waheedakhtar694, |
Beta Was this translation helpful? Give feedback.
-
@kacperkapusciak I was using JS stack but due to performance issues specifically on android i moved to native stack and it works better on android but the animation while navigation is specifically sliding from right or left is slow so i wants to make a little faster, any plan to add this support in the near future ? |
Beta Was this translation helpful? Give feedback.
-
If you need to change the duration of animation, you can change it globally in slide_from_right : https://github.com/software-mansion/react-native-screens/blob/master/android/src/main/java/com/swmansion/rnscreens/ScreenStack.kt#L194.
|
Beta Was this translation helpful? Give feedback.
If you need to change the duration of animation, you can change it globally in
res
files ofreact-native-screens
, e.g. forslide_from_right
you need changes in duration here:react-native-screens/android/src/main/res/anim/rns_slide_in_from_right.xml
Line 3 in afd0b56
slide_from_right
: https://github.com/software-mansion/react-native-screens/blob/master/android/src/m…