kyaroru / RNParallax

A react native scroll view component with Parallax header :p

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Cant scroll when use nested tabview on android

ugrdursun opened this issue · comments

commented

Hello,

I am using this library via renderContent prop, its perfectly working on iOS, but not on android despite scrollenabled=false

This is my using order:

<RNParallaxHeader
....
renderContent={renderContent}
/>




 const renderContent = () => {
    return (
...

<<ScrollableTabView>
  <View>
    <Flatlist
          ...
         scrollEnabled=false
         renderItem={this.renderItems}
     />
  </View>
</ScrollableTabView>

)
}




renderItems=()=> { 

return (
<ListItem ... />
)

}

Its working exactly how i want at iOS, but on android its not working.

Any suggestion ?

@ugrdursun this entire content is placed on top a scrollview component. Hence it might not work as intended with sub-component of it