@abdalla-1/swisco
Version:
Swiscare Components Kit
27 lines (25 loc) • 438 B
text/typescript
import { createAnimations } from '@tamagui/animations-react-native';
export const animations = createAnimations({
bouncy: {
type: 'spring',
damping: 10,
mass: 0.9,
stiffness: 100,
},
lazy: {
type: 'spring',
damping: 20,
stiffness: 60,
},
quick: {
type: 'spring',
damping: 20,
mass: 0.5,
stiffness: 250,
},
fade: {
duration: 500,
tension: 220,
friction: 120,
},
});