@kietpt2003/react-native-core-ui
Version:
React Native Core UI components by KietPT
26 lines (25 loc) • 826 B
JavaScript
import { useSharedValue, } from "react-native-reanimated";
// Fire onScrollComplete when within this many px of target offset
export const SCROLL_POSITION_TOLERANCE = 2;
export const DEFAULT_ANIMATION_CONFIG = {
damping: 20,
mass: 0.2,
stiffness: 100,
overshootClamping: false,
restSpeedThreshold: 0.2,
restDisplacementThreshold: 0.2,
};
export const DEFAULT_PROPS = {
autoscrollThreshold: 30,
autoscrollSpeed: 100,
animationConfig: DEFAULT_ANIMATION_CONFIG,
scrollEnabled: true,
dragHitSlop: 0,
activationDistance: 0,
dragItemOverflow: false,
};
// Is there a better way to check for v2?
export const isReanimatedV2 = !!useSharedValue;
if (!isReanimatedV2) {
throw new Error("Your version of react-native-reanimated is too old for react-native-draggable-flatlist!");
}