-
Notifications
You must be signed in to change notification settings - Fork 83
Closed
Labels
Description
Before submitting a new issue
- I tested using the latest version of the library, as the bug might be already fixed.
- I tested using a supported version of react native.
- I checked for possible duplicate issues, with possible answers.
Bug summary
After bumping both libs to 0.8.8 started seeing a crash on Android, iOS is fine
on version 0.8.7 the problem doesnt exist.
Library version
0.8.8
Environment info
System:
OS: macOS 15.3.1
CPU: (16) arm64 Apple M3 Max
Memory: 1.48 GB / 48.00 GB
Shell:
version: "5.9"
path: /bin/zsh
Binaries:
Node:
version: 23.7.0
path: /opt/homebrew/bin/node
Yarn: Not Found
npm:
version: 10.9.2
path: /opt/homebrew/bin/npm
Watchman:
version: 2025.02.17.00
path: /opt/homebrew/bin/watchman
Managers:
CocoaPods:
version: 1.16.2
path: /usr/local/bin/pod
SDKs:
iOS SDK:
Platforms:
- DriverKit 24.2
- iOS 18.2
- macOS 15.2
- tvOS 18.2
- visionOS 2.2
- watchOS 11.2
Android SDK:
API Levels:
- "33"
- "34"
- "35"
Build Tools:
- 30.0.3
- 33.0.0
- 33.0.1
- 34.0.0
- 35.0.0
System Images:
- android-28 | Google ARM64-V8a Play ARM 64 v8a
- android-29 | Google Play ARM 64 v8a
- android-30 | Google Play ARM 64 v8a
- android-31 | Google Play ARM 64 v8a
- android-34 | Intel x86_64 Atom
- android-34 | Google APIs ARM 64 v8a
- android-35-ext14 | Google Play ARM 64 v8a
- android-35 | Google Play ARM 64 v8a
Android NDK: 22.1.7171670
IDEs:
Android Studio: 2024.2 AI-242.23726.103.2422.13016713
Xcode:
version: 16.2/16C5032a
path: /usr/bin/xcodebuild
Languages:
Java:
version: 17.0.14
path: /usr/bin/javac
Ruby:
version: 2.6.10
path: /usr/bin/ruby
npmPackages:
"@react-native-community/cli":
installed: 15.1.3
wanted: 15.1.3
react:
installed: 18.3.1
wanted: 18.3.1
react-native:
installed: 0.77.1
wanted: 0.77.1
react-native-macos: Not Found
npmGlobalPackages:
"*react-native*": Not Found
Android:
hermesEnabled: true
newArchEnabled: false
iOS:
hermesEnabled: true
newArchEnabled: falseSteps to reproduce
- Update to the latest version of packages 0.8.8
Reproducible sample code
import {
createNativeBottomTabNavigator,
type NativeBottomTabNavigationOptions,
type NativeBottomTabNavigationEventMap,
} from '@bottom-tabs/react-navigation';
import { BottomNavBar } from '@components/BottomNavBar';
import type {
ParamListBase,
TabNavigationState,
} from '@react-navigation/native';
import { withLayoutContext } from 'expo-router';
const BottomTabNavigator = createNativeBottomTabNavigator().Navigator;
const Tabs = withLayoutContext<
NativeBottomTabNavigationOptions,
typeof BottomTabNavigator,
TabNavigationState<ParamListBase>,
NativeBottomTabNavigationEventMap
>(BottomTabNavigator);
export default function HomeLayout() {
return (
<Tabs tabBar={(props) => <BottomNavBar {...props} />}>
<Tabs.Screen
name='index'
options={{
title: '',
headerShown: false,
}}
/>
<Tabs.Screen
name='settings'
options={{
title: '',
headerShown: false,
}}
/>
</Tabs>
);
}kamui545
