Before submitting a new issue
Bug summary
Using the new custom tab bar on iPad renders two tab bars.

Library version
0.8.6
Environment info
expo 52.0.31
react-native 0.76.7
Steps to reproduce
- Create a new Expo project
- Setup
react-native-bottom-tabs
- Create a custom tab bar
- Open on iPad
Reproducible sample code
<Tabs
screenOptions={{
lazy: true,
}}
tabBar={(props) => <CustomTabBar {...props} />}
>
<Tabs.Screen name="(home)" />
<Tabs.Screen name="(search)" />
<Tabs.Screen name="(profile)" />
<Tabs.Screen
name="(notifications)"
options={{
tabBarBadge: unread,
}}
/>
<Tabs.Screen name="(settings)" />
<Tabs.Screen
name="+not-found"
options={{
tabBarItemHidden: true,
}}
/>
<Tabs.Screen
name="_sitemap"
options={{
tabBarItemHidden: true,
}}
/>
</Tabs>
Before submitting a new issue
Bug summary
Using the new custom tab bar on iPad renders two tab bars.
Library version
0.8.6
Environment info
Steps to reproduce
react-native-bottom-tabsReproducible sample code