While implementing this library I faced an issue where initialPage prop wasn't working on android devices for some reason contentOffset of FlatList had no effect on android, I managed to get a workaround for this by triggering manual startScroll of scroller in componentDidUpdate as first time initialPage is working fine but it breaks after that.
While implementing this library I faced an issue where
initialPage
prop wasn't working on android devices for some reasoncontentOffset
ofFlatList
had no effect on android, I managed to get a workaround for this by triggering manualstartScroll
ofscroller
incomponentDidUpdate
as first timeinitialPage
is working fine but it breaks after that.