Agontuk / react-native-collapsible-toolbar

Pure JS based collapsible toolbar for react native on Android and iOS
MIT License
56 stars 13 forks source link

Scroll view not working #10

Open JstMagic opened 5 years ago

JstMagic commented 5 years ago

Scroll view within another component which is added to the main component which has the collapsible header not working

<View style={styles.MainContainer}>

                <CollapsibleToolbar
                    renderNavBar={this.renderNavBar}
                    renderToolBar={this.renderSearch}
                    renderContent={this.renderContent}  // a component from another component that has the scrollview in it
                    collapsedNavBarBackgroundColor='#009688'
                    translucentStatusBar={Platform.Version >= 21}
                    toolBarHeight={300}
                />

</View>

the scrollview works if not using your library

JstMagic commented 5 years ago

Dont think this library supports nestedscrollview

Agontuk commented 5 years ago

Did not try with nested scrollview but it's possible that's the source of your issue. How are you going to handle two scrollview in same page ?