Agontuk / react-native-collapsible-toolbar

Pure JS based collapsible toolbar for react native on Android and iOS

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Scroll view not working

JstMagic opened this issue · comments

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

Dont think this library supports nestedscrollview

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 ?