316 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
1
answer
39
views
React Navigation headerLargeTitle text disappears when using headerStyle to set background color
Issue getting React Navigation header to show correctly. I would like to set headerLargeTitle to true and when I do so I can see the large header in my page. however if I want to change the header ...
0
votes
1
answer
61
views
Expo router - iOS - router.navigate("/") display the previous screen but focus and mount the right one
I'm working with Expo 51, React Native 0.74, and expo-router ~3.5.
On Android, everything works as expected.
On iOS, I'm facing an issue with expo-router.
When I use router.navigate("/") to ...
1
vote
0
answers
53
views
How to remove gaps between the header containers in react navigation?
I'm using expo-router, but the configuration is from react navigation.
When customizing the header with headerLeftContainerStyle, headerRightContainerStyle and headerTitleContainerStyle, I would like ...
0
votes
1
answer
73
views
Search page re-mounting and losing parameters passed via URL (expo-router)
I have a search page that passes parameters to a results page practitioner-list.tsx.
The problem I am experiencing is that the search page immediately reloads and loses all the filtering params passed ...
0
votes
1
answer
57
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....
1
vote
0
answers
61
views
How to put the Input in the bottom of the formSheet?
I'm using Expo Router, displaying the page as a formSheet, but my input field isn't at the bottom of the page. Does anyone know how I can fix this?
If I change the display to modal, it works normally, ...
1
vote
1
answer
57
views
Why does Expo Router first show "unmatched route" or a flicker before it navigates to /news?
I'm working on deep link handling in an Expo Router (React Native) app.
When I open a deep link like this: myapp://news/a81c95f9-a6ae-4f1a-8e95-f30b344bbc46
it contains a news ID at the end which I ...
0
votes
0
answers
37
views
Nested Stack Navigation History Broken When Accessing Deep Routes Directly
When navigating directly to nested routes (e.g., /(tabs)/personal/journal/[id]) without first visiting the parent stack's index route (/(tabs)/personal/index), the stack navigation history breaks. ...
0
votes
0
answers
390
views
Expo-Router: animationTypeForReplace: "pop" is not respected
I have an auth login page:
import { Stack } from "expo-router";
export default function AuthLayout() {
return (
<Stack>
<Stack.Screen
name="login"
...
1
vote
0
answers
45
views
Navigation issue missing or incorrect back button behavior
I’m running into an issue with navigation, while using backBehavior="fullHistory".
Navigation tree
- (tabs)
|- agenda
| `- appointment
`- clients
`- client
Flow:
(tabs) ➡️ ...
0
votes
1
answer
96
views
Can I pass boolean values through search params using Expo Router's useLocalSearchParams?
I'm trying to pass a boolean flag when navigating between screens with Expo Router and read it with useLocalSearchParams, but the value I receive is a string (e.g. "true" / "false")...
2
votes
2
answers
3k
views
Expo Sdk 54 upgrade error "Couldn't find the prevent remove context"
I've been getting an error trying to upgrade to expo sdk 54 from 53 but kept getting this error related to expo-router:
I've tried a couple of things that didn't work, ChatGPT didn't help me, there ...
0
votes
0
answers
142
views
i can't do the react-native expo router path right
I'm using expo router to move the page, but it suddenly doesn't work. I tried to figure out various circumstances such as file name, file path, and name, but it didn't work.
app(mainpage)(tabbar)\...
0
votes
0
answers
118
views
React Native + Clerk + Convex: Preventing UI Flash During OAuth Login - Query Updates Multiple Times
Question:
I'm using Clerk for authentication and Convex for my database in a React Native app with Expo Router. I'm experiencing a brief flash of UI content during OAuth login (Google/GitHub).
The ...
-1
votes
2
answers
205
views
expo router back to previous screen with data
i have a question regard grabbing the data in the previous screen after calling the router.back() in current screen.
Let say i have Screen A and B. i used router.push() to go from screen A -> B
...