Guides
FlashList

FlashList

If you want to use @shopify/flash-list inside the ActionSheet you can use the FlashList component from the react-native-actions-sheet.

import ActionSheet from 'react-native-actions-sheet';
import {FlashList} from 'react-native-actions-sheet/dist/src/views/FlashList';
 
const ExampleSheet = () => {
  return (
    <ActionSheet>
      <FlashList />
    </ActionSheet>
  );
};
Last updated on January 29, 2024