I am building an app(expo react native ts with custom native code in the android folder) that uses android's accessibility service/feature to read what is on the screen, and it's triggered by events ...
I have a FlashList displaying a complex list of items. To optimize it, I am using getItemType, overrideItemLayout, and keyExtractor. Everything works perfectly in Expo Go and on a local build (npx ...
I’m working on a React Native app using Expo (SDK 54). The Android build works perfectly, and the app also runs fine on an iPhone device via expo start --tunnel (we've tested it with client as they ...
I manage auth with a context that exposes user and loading. On auth state change (login/logout/signup), I conditionally render either an Auth navigator or the App navigator.What worksIf I only mount ...
I'm implementing Google OAuth in my Expo app using expo-auth-session and Firebase, but I'm facing two interconnected issues:makeRedirectUri({ useProxy: true }) returns exp://192.168.1.48:8081 ...
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. ...
I have migrated to react-native-firebase 22.2.1. I am using Expo SDK 53 and React Native 0.79.6. I import the packages as below:import analytics from "@react-native-firebase/analytics";...
Hope you're having a nice day.I'm working on a React Native todo list app.I want to slice my text when the available width is full and add "..." at the end. Right now I've the algorithm to ...
I’ve set up push notifications in my React Native app using Expo’s Notifications API.i am using expo sdk 54.0.10Notifications work perfectly in Expo Go, but when I build the app using this command:...
This code worked previously, but now that I upgraded my expo version I am getting the error "TypeError: Cannot assign to read only property 'userId' of object '#'".export interface ...
I am writing a native module for an Expo application. I would like the consumer of the library to be able to pass objects for some of the parameters. When I attempt to get the JavaScriptValue as an ...
I'm building an app with React Native / Expo SDK 54.The app bundles ~42,000 compressed HTML files (.zst format, ~224 MB compressed) that need to be accessible without network access.The ProblemMy ...
I'm implementing Stripe's Embedded Checkout in a React Native app using Expo with web support. The checkout form renders successfully, but the input fields are not responsive - they don't scale or ...
I have built an expo react native app where there are TextInput fields and Picker. Everything was fine while building the UI, the moment I start filling the forms the app suddenly crashes at no ...