UNPKG

@shopify/flash-list

Version:

FlashList is a more performant FlatList replacement

13 lines (9 loc) 317 B
import { Animated } from "react-native"; import { FlashListProps } from "./FlashListProps"; import { FlashList } from "./FlashList"; // Typecast as required const AnimatedFlashList = Animated.createAnimatedComponent<React.ComponentType<FlashListProps<any>>>( FlashList ); export default AnimatedFlashList;