1,969 questions
0
votes
1
answer
20
views
Intermittently getting blank screens when navigating between bottom tabs in Expo Router
Environment
expo-router: 6.0.14
react-native: 0.81.5
react: 19.1.0
@react-navigation/bottom-tabs: 7.4.0
@react-navigation/native: 7.1.8
expo: 54.0.12
Tab Layout Configuration
// app/(tabs)/_layout....
0
votes
1
answer
97
views
Is there a view/component that goes above all content in React Native?
Is there a view/component/anything that can be used in one place in a react native app that would be placed above all the content - I need it for toast component. I tried using Portals, Root Siblings, ...
0
votes
1
answer
338
views
React-Native-Gesture-Handle version problem
I have upgraded my project SDK version from 34 to 35.
After the SDK version update, the app began crashing on devices with Android versions 9 or lower.
There is a problem with the version of React-...
0
votes
0
answers
93
views
App is becoming sluggish after combining BottomTab Navigation, DrawerNavigation and Stack Navigation
I'm using CustomBottomTab and CustomDrawer for rendering custom ones into it.
The strange thing what I have noticed was when I comment either one BottomTab or Drawer, the app works smoothly but when I ...
0
votes
0
answers
35
views
I had "Bubbling event type of null" error
When I am trying to load last page of my app on my phone through "npx expo start --clear" (previous are working perfect), there are "bubbling event type of null" errors. I tried ...
0
votes
0
answers
38
views
How do I get a react-native web app to work with navigation?
I have a react-native project in this git repo https://github.com/Virock/rn.git
Running it on web returns this error:
ReferenceError
exports is not defined
Call Stack
(anonymous function)
KK/./...
0
votes
0
answers
21
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
&...
-1
votes
1
answer
128
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 ...
1
vote
2
answers
1k
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
0
answers
52
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
34
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
1
answer
186
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
192
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, ...
0
votes
0
answers
117
views
I have error with react-native-safe-area-context the package attribute in the source AndroidManifest.xml is no longer supported, and the value is ign
Task :react-native-safe-area-context:processDebugManifest
package="com.th3rdwave.safeareacontext" found in source AndroidManifest.xml: C:..\node_modules\react-native-safe-area-context\...
0
votes
0
answers
123
views
React-native-vector-icons/Ionicons icons are not displayed
import React from 'react';
import { createBottomTabNavigator } from '@react-navigation/bottom-tabs';
import Home from '../screens/home';
import Car from '../screens/Car';
import Services from '../...
0
votes
0
answers
63
views
How to properly wait for reset navigation in react native (react-navigator 6)?
React Navigation: Component in Tab Navigator not unmounting properly after parent Stack Navigator reset
The Problem
I have a nested navigation structure with a Stack Navigator containing a Tab ...
0
votes
0
answers
26
views
Nested navigation typings in react-navigation
I was following the documentation tutorial about using typescript with react-navigation when I encountered some problems.
I have a Tab navigator that consists of Stack navigators, each of which ...
1
vote
0
answers
58
views
Tabs not showing on reaxt native 0.76.2
I am building a react-native 0.76.2 app using expo 52.0.10. I have used v0.76.2 of react-native. the code is really simple but I ran into an issue while following a tutorial online that the Tabs (...
2
votes
1
answer
1k
views
React Native - Stack Navigation - react-native-gesture-handler:compileDebugKotlin FAILED
I create a new React Native Project and I install React Native Navigation and React Native Stack Navigation.
npm install @react-navigation/native
npm install @react-navigation/stack
npm install react-...
1
vote
1
answer
123
views
Bottom Tab Bar is pushed upward when the keyboard opens
The solution provided in this thread is applicablle to all the screens but I need to implement it only on some specific screen how to do this ?
I tried below things but they are impact all the ...
5
votes
3
answers
4k
views
Expo Router Link - Type '"/sign-in"' is not assignable to type 'Href<string | object>'.ts
I have an expo project, and setting up a clerk auth. I have followed all the required code clerk gave, and now getting this error on the links. Everything looks okay to me, but I cant figure out how ...
0
votes
1
answer
147
views
title pushes out headerRight and headerLeft
Problem
If the title gets to be to long, it will push out the headerRight and headerLeft before it applies the ellipsis.
Note
I found a similar question here with no fix for this issue
https://...
0
votes
1
answer
100
views
Expo Router Crushing the app when navigating on iOS
I am trying to navigate to the profile from the verify screen upon complete authentication using the following code:
const verify = async ()=>{
.....
if (completeSignUp.status === "...
1
vote
1
answer
306
views
After changing screen brightness manually, the brightness cannot be changed from app code
I'm using React Native with @adrianso/react-native-device-brightness library for this
Imagine I'm in screen A, having device brightness about 0.5
When redirecting to screen B, Current brightness is ...
1
vote
1
answer
49
views
React Native nested navigation unexpected behaviour
I am using 'react-navigation/native' in an Expo managed project and I have built using 'react-navigation/native-stack' and 'react-navigation/bottom-tabs' a navigation structure as follows:
<...