Vishal Narkhede
Vishal Narkhede
Thanks for the PR @nis130 I will check it out soon :)
Hey Siddharth, this issue is coming from react-native and it was fixed in v0.63.2 of react-native. Please check their changelog - https://github.com/react-native-community/releases/blob/master/CHANGELOG.md#ios-specific-2 So please upgrade the version of react-native!!
Yeah shouldn't be too hard. I will try to add it this week or next week :)
@pdpino VirtualizedList is a little complicated apparently. Turns out ref setting is not as easy as FlatList/ScrollView. Will need some more digging!! Will get back
@geo-vi thanks alot for investigating this. I will be able to look into this after wednesday. Will get back :) I can see that you raised a PR as well,...
@sergeykimaia you may want to lower the value of `autoscrollToTopThreshold `. Something like 10 or so. Basically right now, when you add new items to list, if scroll position is...
I will setup an example Maybe that will be easier :0
@sergeykimaia I haven't got chance to run it yet. I will try it tomorrow :)
Hey @sergeykimaia I am trying it now. So I can see two buttons in example that you mentioned, its the upwards scroll ("Sub number") which doesn't work for you, right?
@sergeykimaia Please use some negative value on `autoscrollToTopThreshold`. That works in your given example :) ```js maintainVisibleContentPosition={{ autoscrollToTopThreshold: -10, minIndexForVisible: 0, }} ```