Skip to content
This repository has been archived by the owner on Feb 25, 2020. It is now read-only.

Commit

Permalink
fix: tweak transition spec to prevent jumping effect
Browse files Browse the repository at this point in the history
  • Loading branch information
satya164 committed Jul 8, 2019
1 parent c0cecee commit 522f741
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/TransitionConfigs/TransitionSpecs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,6 @@ export const WipeFromBottomAndroidSpec: TransitionSpec = {
duration: 425,
// This is super rough approximation of the path used for the curve by android
// See http://androidxref.com/9.0.0_r3/xref/frameworks/base/core/res/res/interpolator/fast_out_extra_slow_in.xml
easing: t =>
Easing.bezier(0.9, 0.06, 0.57, 0)(
Easing.bezier(0.06, 0.94, 0.22, 1.02)(t)
),
easing: Easing.bezier(0.35, 0.45, 0, 1),
},
};

0 comments on commit 522f741

Please sign in to comment.