react-native-reanimated-carousel
Version:
Simple carousel component.fully implemented using Reanimated 2.Infinitely scrolling, very smooth.
10 lines (9 loc) • 742 B
TypeScript
import type { GestureStateChangeEvent, GestureUpdateEvent, PanGesture, PanGestureHandlerEventPayload } from "react-native-gesture-handler";
import type { GestureConfig } from "./useUpdateGestureConfig";
export declare const usePanGestureProxy: (customization: {
onConfigurePanGesture?: (gesture: PanGesture) => void;
onGestureStart: (event: GestureStateChangeEvent<PanGestureHandlerEventPayload>) => void;
onGestureUpdate: (event: GestureUpdateEvent<PanGestureHandlerEventPayload>) => void;
onGestureEnd: (event: GestureStateChangeEvent<PanGestureHandlerEventPayload>, success: boolean) => void;
options?: GestureConfig;
}) => import("react-native-gesture-handler/lib/typescript/handlers/gestures/panGesture").PanGesture;