import { FlashList, ListRenderItemInfo } from '@shopify/flash-list'; import Image from 'expo-image'; import { StyleSheet, View } from 'react-native'; const DATA: number[] = Array(1000).fill(0); function renderItem({ index }: ListRenderItemInfo) { function renderImage(_: any, column: number) { return ( ); } return {Array(4).fill(0).map(renderImage)}; } export default function ImageFlashListScreen() { return ; } const styles = StyleSheet.create({ row: { flex: 1, flexDirection: 'row', justifyContent: 'space-evenly', }, image: { width: 100, height: 100, }, });