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

Commit

Permalink
fix: tweak the easing for android
Browse files Browse the repository at this point in the history
Co-Authored-By: Michał Osadnik <[email protected]>
  • Loading branch information
satya164 and osdnk committed Aug 18, 2019
1 parent c2eb482 commit 78c4f25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/stack/src/TransitionConfigs/TransitionSpecs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +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: Easing.bezier(0.35, 0.45, 0, 1),
easing: t => Easing.bezier(0.90, 0.06, 0.57, 0)((Easing.bezier(0.06, 0.94, 0.22, 1.02)(t))),
},
};

0 comments on commit 78c4f25

Please sign in to comment.