We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
dispatchGetDisplayList
1 parent 629df83 commit ede6a0fCopy full SHA for ede6a0f
android/src/main/java/com/swmansion/rnscreens/stack/anim/ScreensAnimation.kt
@@ -12,7 +12,9 @@ internal class ScreensAnimation(
12
t: Transformation,
13
) {
14
super.applyTransformation(interpolatedTime, t)
15
- // interpolated time should be the progress of the current transition
16
- mFragment.dispatchTransitionProgressEvent(interpolatedTime, !mFragment.isResumed)
+ mFragment.view?.post {
+ // interpolated time should be the progress of the current transition
17
+ mFragment.dispatchTransitionProgressEvent(interpolatedTime, !mFragment.isResumed)
18
+ }
19
}
20
0 commit comments