UNPKG

rn-sheet

Version:
12 lines (11 loc) 617 B
import { FlashList as SPFlashList, MasonryFlashList as SPMasonaryFlashList, } from '@shopify/flash-list'; import React from 'react'; import { ScrollView as SheetScrollView } from './ScrollView'; function $FlashList(props, ref) { return (<SPFlashList {...props} ref={ref} bounces={false} renderScrollComponent={SheetScrollView}/>); } export var FlashList = React.forwardRef($FlashList); function $MasonaryFlashList(props, ref) { return (<SPMasonaryFlashList {...props} ref={ref} bounces={false} renderScrollComponent={SheetScrollView}/>); } export var MasonaryFlashList = React.forwardRef($MasonaryFlashList);