Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 | 5x 5x 5x 5x 5x 5x | import { Easing } from 'react-native-reanimated';
export const ANIMATION_DURATION = 1000;
export const ANIMATION_DURATION_SHORT = 300;
export const EASING_OUT_CUBIC = Easing.out(Easing.cubic);
export const EASING_IN_CUBIC = Easing.in(Easing.cubic);
export const CALLBACK_DELAY = 1000;
export const CALLBACK_DELAY_LOGIN = 0;
|