options={{headerShown: false}} in CurvedBottomBar.Screen is not working
I try to hide the header in CurvedBottomBar.Screen : options={{headerShown: false}} but it not working, I just downgraded version to 2.4.1 so it worked.
I try to hide the header in CurvedBottomBar.Screen : options={{headerShown: false}} but it not working, I just downgraded version to 2.4.1 so it worked.
Use options={{headerShown: false}} in CurvedBottomBar.Navigator
In current v3.2.6 the issue still exists. For specific screen is there any way to hide the header???
I try to hide the header in CurvedBottomBar.Screen : options={{headerShown: false}} but it not working, I just downgraded version to 2.4.1 so it worked.
Use options={{headerShown: false}} in CurvedBottomBar.Navigator
But this will hide the header in all screens, which https://reactnavigation.org/docs/bottom-tab-navigator/ doesn't do.
Issue is here https://github.com/hoaphantn7604/react-native-curved-bottom-bar/blob/master/src/CurvedBottomBar/components/BottomBarViewExpo/index.tsx#L291 the options are not passed to the screen. Here's a fix <Tab.Screen options={e?.props?.options} key={e?.props?.name} name={e?.props?.name}>
@hoaphantn7604
Issue is here https://github.com/hoaphantn7604/react-native-curved-bottom-bar/blob/master/src/CurvedBottomBar/components/BottomBarViewExpo/index.tsx#L291 the options are not passed to the screen. Here's a fix
<Tab.Screen options={e?.props?.options} key={e?.props?.name} name={e?.props?.name}>@hoaphantn7604
It would be nice if listener is also included on that line too
I try to hide the header in CurvedBottomBar.Screen : options={{headerShown: false}} but it not working, I just downgraded version to 2.4.1 so it worked.
screenOptions={ { headerStatusBarHeight: -56, } do this in screen option to hide header
add screenOptions={{ headerShown: false, }} on CurvedBottomBar this will fix the issue
@Usamaliaquat123 not sure if you understand the issue here, if you do that it hides the entire header. We don't want to hide the entire header but for some screens. Please read up the comments above.