Skip to content

Header not clickable #83

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
ParthDev96 opened this issue Sep 30, 2023 · 2 comments
Open

Header not clickable #83

ParthDev96 opened this issue Sep 30, 2023 · 2 comments

Comments

@ParthDev96
Copy link

ParthDev96 commented Sep 30, 2023

@kanelloc-deploy Please check the video, header is not clickable may be some overlapping on there, please let me know if I am doing something wrong.

Screen.Recording.2023-09-30.at.11.37.40.AM.mov
@dcnxx1
Copy link

dcnxx1 commented May 26, 2024

did you get around this? Facing the same issue rn

@ParthDev96
Copy link
Author

ParthDev96 commented Jun 20, 2024

hi @dcnxx1,

OverflowHeaderComponent is overlapping on it so.

I solved it by adding a condition while rendering the OverflowHeaderComponent in the library's source (src/components/AnimatedNavbar.tsx), and I added a patch to the library.

Before

<Animated.View style={[ styles.container, styles.overflowHeader, { zIndex: overflowHeaderOpacity, height: headerHeight, opacity: overflowHeaderOpacity, }, ]} > {OverflowHeaderComponent} </Animated.View>

After
{OverflowHeaderComponent && <Animated.View style={[ styles.container, styles.overflowHeader, { zIndex: overflowHeaderOpacity, height: headerHeight, opacity: overflowHeaderOpacity, }, ]} > {OverflowHeaderComponent} </Animated.View>}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants