UNPKG

react-native-reanimated-carousel

Version:

Simple carousel component.fully implemented using Reanimated 2.Infinitely scrolling, very smooth.

6 lines (5 loc) 290 B
import React from "react"; import { type ViewStyle } from "react-native"; import { ICarouselInstance } from "../types"; export type TAnimationStyle = (value: number) => ViewStyle; export declare const CarouselLayout: React.ForwardRefExoticComponent<React.RefAttributes<ICarouselInstance>>;