saleel/react-native-super-grid

Property 'onEndThreshold' does not exist on type

thevishnupradeep opened this issue · 2 comments

I am seeing an error Property 'onEndThreshold' does not exist on type... when trying to implement infinite scroll.

<FlatGrid itemDimension={150} data={data}
renderItem={renderAS} keyExtractor={({ ID }) => ID}
onEndReached={onEndReached} onEndThreshold={10}  />

Also, I can confirm that the onEndThreshold doesn't work. I tried different values.

I think it should be onEndReachedThreshold

Yes... That fixed type problem 😅
Thank you.