Property 'onEndThreshold' does not exist on type
thevishnupradeep opened this issue · 2 comments
thevishnupradeep commented
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.
saleel commented
I think it should be onEndReachedThreshold
thevishnupradeep commented
Yes... That fixed type problem 😅
Thank you.