All Questions
Tagged with react-native react-native-navigation
1,879 questions
2
votes
0
answers
135
views
Couldnt find navigation context while using expo router
I have an expo app that uses expo router with Expo 52. I'm using react query with my custom query client. I also have a route guard.
Everything was working perfectly, but once I started to work on my ...
0
votes
0
answers
12
views
React Navigation: initialRouteName in MaterialTopBar not working
When I set the initialRouteName to the second tab, it still renders the first screen on startup, not the second one where I want my home page to be.
what it does right now
how ti should look like
&...
0
votes
1
answer
107
views
React native app upgrade from 0.69.12 to 0.76.3
I have upgraded a React Native application from
react-native - 0.69.12 > 0.76.3
I have also upgraded all the 3rd party libraries that the app used and got rid of the ones that were deprecated and ...
-1
votes
1
answer
28
views
How to remove tap highlight color from react navigation bottom tabs?
I am building an application using react native and using @react-navigation/bottom-tabs for navigation. But I want to remove the highlight feedback (Check the image) when we tap on the label to ...
0
votes
0
answers
43
views
Weird behavior of Tabs and Indicator in @react-navigation/material-top-tabs
Below is the code demonstrating the usage of the Material Top Tab Navigator in this screen. I've even tried lazy: true, but the issue still persists. Why is the tab indicator behaving like this? Does ...
0
votes
1
answer
225
views
React Native Crash - Error: Exception in HostFunction: Loss of precision during arithmetic conversion: (long) 13.63636334080342
Hello there,
I’m facing the following error while resetting the navigation to Home after a successful login.
The app crashes as soon as the navigation resets.
I’m able to reproduce the crash on a ...
0
votes
1
answer
24
views
Error trying to assign color when navigating between tabs with react navigation
I am doing navigation between tabs using react navigation, the navigation is done correctly, as well as my custom tabBarLabel classes, but I am encountering a problem and that is that ...
0
votes
0
answers
35
views
react-native-navigation v7: Opening a modal with dynamic height
Is it possible to open a modal in presentation: 'transparentModal' with dynamic height by content? Because by default, it opens in full screen. Or maybe another solution, but in each modal screen, I ...
0
votes
0
answers
70
views
How to Type Nested Screen Parameters Correctly in React Navigation with TypeScript (Recursive Screen Params)?
I am working with a React Navigation setup and TypeScript, and I am trying to define and enforce correct types for the navigation parameters. I have a nested stack structure where I need to properly ...
0
votes
0
answers
54
views
React navigation loading freeze on heavy component
I have a problem with React Native navigation (Expo Router). I have a slow loading (initial rendering) component on one of the screens and every time I move to that screen, the app freezes before ...
0
votes
0
answers
33
views
Error while installing the react navigation in react native
I have spent a lot of time trying to fix this issue, but I am unable to find the cause. I also updated react-native-screens using the command npm install react-native-screens@latest.
Please help me ...
0
votes
0
answers
29
views
How to remove the tabBarHideOnKeyboard animation in React Native navigation
I am working on a React Native CLI project. I have below Tab navigation in react native.
<Tab.Navigator
screenOptions={{
animation: 'shift',
tabBarHideOnKeyboard: ...
0
votes
1
answer
45
views
React Native: TypeError - _$$REQUIRE(_dependencyMap[3], "(...)helpers/objectWithoutProperties") is not a function
I'm working on a React Native project, and I'm facing the following error when running my app for ios.
ERROR TypeError: _$$_REQUIRE(_dependencyMap[3], "(...)helpers/objectWithoutProperties")...
0
votes
0
answers
9
views
Webpack Assets Work on Web but Fail to Build on Android in React Native CLI
I am working on a React Native CLI project with TypeScript, and I have configured Webpack to support images and PDF assets for the web platform. Everything works fine on the web, but when I try to ...
0
votes
0
answers
111
views
nesting Stack.Group causes ios warning "Sending `onAnimatedValueUpdate` with no listeners registered."
Looking at the following example: https://reactnavigation.org/docs/nesting-navigators/#best-practices-when-nesting.
** Note ** Other similar solutions I found are geared more towards Tabs Navigation, ...