Prayas Lashkari

Results 24 comments of Prayas Lashkari

I was wondering if anyone found solution to this.

Use `forceNonDeterministicRendering={true}` and provide estimate heights in layout provider.

@IoanaBdn did you find any solution to this?

@leonardonelson91 @mdarke1 can we somehow test onEndReach callback getting fired too?

@dzpt @EmersonPinheiro @abduraufsherkulov did you find any workaround?

> Hey @callmemonky, I ended up using Class Components. I didn't try any new solution since. Solution that worked for me. ``` const _dataProvider = useMemo(() => { return new...

To all facing this issue, I added layout provider and added accurate dimensions there. It started working normally after that. I would suggest defining fixed height for the list item...

``` const dataProvider = useMemo(() => { return new DataProvider((r1, r2) => { return r1.id !== r2.id; }); }, []); const newDataProvider = useMemo(() => { return dataProvider.cloneWithRows(data); }, [data,...

@Amanida hey man! Thanks alot. Any idea how we can integrate this with react native app? Using native nodules right?