Skip to content

Instantly share code, notes, and snippets.

View Aryk's full-sized avatar

Aryk Grosz Aryk

View GitHub Profile
@Aryk
Aryk / onEndReachedFix.tsx
Last active December 13, 2023 17:03
A fix for two issues with FlatList still prevalent on React Native 0.72.4
const onEndReachedFixData: ModelData[] = [{id: "placeholder"}];
const onEndReachedFixRenderItem = () => null;
interface IUseOnEndReachedFix<Data> {
data: Data[];
key?: string;
onEndReachedThreshold?: number;
onEndReached?: () => any;
initialLoaded?: boolean;
renderItem?: any;