UNPKG

react-native-fiesta

Version:

A set of celebration animations powered by Skia. Engage more with your users by celebrating in your React Native application.

25 lines 468 B
import { screenHeight } from './dimensions'; const slowSpringSpeed = { mass: 1, stiffness: 0.2, damping: 19 }; const normalSpringSpeed = { mass: 1, stiffness: 0.35, damping: 19 }; const fastSpringSpeed = { mass: 1, stiffness: 0.5, damping: 19 }; export const FiestaSpeed = { Slow: slowSpringSpeed, Normal: normalSpringSpeed, Fast: fastSpringSpeed }; export const singleItemFadeSpeed = { mass: screenHeight }; //# sourceMappingURL=speed.js.map