Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
37 views

image showing the ui layout for this code: <Animated.View className="flex-1 items-center justify-center bg-red-600"> <Animated.View className="h-40 w-48 bg-green-800">...
Khldon Alkaateh's user avatar
0 votes
0 answers
50 views

I'm building a React Native app using Expo, and I'm integrating the Twilio Voice SDK with react-native-callkeep to handle incoming VoIP calls. The Goal: When a VoIP call comes in, I want to use react-...
Zeeshan Ghazanfar's user avatar
0 votes
0 answers
39 views

FlashList setup: <FlashList ref={flashListRef} data={messages} keyExtractor={(item: any) => item.id.toString()} onScrollBeginDrag={() => { msgIdRef.current = null; }} style={{ ...
Adheil Gupta's user avatar
-1 votes
1 answer
74 views

When I run npx expo run:android I get the following error: Plugin [id: 'com.facebook.react.settings'] was not found in any of the following sources: Here is my settings.gradle pluginManagement { ...
Rue Vitale's user avatar
  • 1,981
0 votes
0 answers
48 views

I’m trying to build and archive my React Native iOS app using GitLab CI/CD, but the build fails during the archive step. Below is the error message I get: note: Disabling previews because ...
Somnath Sabale's user avatar
1 vote
1 answer
117 views

I am trying to create my TextInput component that wraps around React Native's TextInput, but applies additional styles and adds more features. Unfortunately, I am stuck at the very start of my ...
rolling_dog's user avatar
-3 votes
0 answers
98 views

One of my projects currently uses NativeBase. After upgrading React Native to 0.76 and enabling the new architecture, some components began behaving unexpectedly. I’m therefore planning to migrate to ...
disteni's user avatar
-1 votes
0 answers
92 views

I'm trying to enable Google Login inside my app, but I don't see a section to add a redirect URI to my Android Google Oauth 2.0 Client ID. I'm getting the following error when using expo go React ...
Rue Vitale's user avatar
  • 1,981
1 vote
0 answers
55 views

I’m building a note-taking app in React Native (see code below) where each note’s content is displayed in a multiline, non-editable TextInput. The paddingTop of the TextInput is dynamically set based ...
Jake Matthews's user avatar
0 votes
1 answer
88 views

I simply wants to fetch subscriptions i created in App Store Connect and Google Play Console. I use react-native-iap v14.4. The code below works correctly on Android and return what it should : [{&...
ZaKeR GFX's user avatar
0 votes
0 answers
84 views

I'm using the latest version of Axios and built a React Native app using expo. Trying to run it in IOS simulator but it's not working. It's giving me a Network Error. Here's my cors in index.js: const ...
Rue Vitale's user avatar
  • 1,981
0 votes
0 answers
38 views

I am using Expo 54 and when i make request for the first time when the cache of App/Expo Go is empty. It takes about 1-5 minutes for the response to come back after the response of the first download, ...
Abdullah Abid's user avatar
0 votes
0 answers
107 views

Here is a short demo for the problem: https://gist.github.com/slhhuseein-jpg/09eb2e2ef458bff81298bdd3d5e49da0?permalink_comment_id=5818819#gistcomment-5818819 As you can see. When performing a pinch-...
Khldon Alkaateh's user avatar
0 votes
1 answer
65 views

Markers (whether custom or default) aren't showing on my map. I tried using custom markers using Image and view components too.. still no success. Please help...ask me for more details if you want.. ...
Riya Singh's user avatar
0 votes
1 answer
69 views

I am working on an Expo - React Native project and am having problems with this issue while building the app. I had to downgrade most libraries due to an issue with react-native-maps with newer ...
SaboSuke's user avatar
  • 793
0 votes
0 answers
52 views

After updating bundle to the custom path ${RNFS.DocumentDirectoryPath}/bundle/index.android.bundle; the bundle updates but doesn't get resources and assets require('../resources/loading1.gif'), not ...
Toballz Ibot's user avatar
0 votes
2 answers
62 views

I’m working on a multilingual React Native app and using i18next for static UI strings like “Submit” or “Profile” — that part is solid. But I also need to display user-facing names (stored in English) ...
Arijit Das's user avatar
0 votes
1 answer
28 views

This issue occurs when trying to launch the debugger through the installed React Native Tools extension from Microsoft in VS code after following the instructions on creating a launch.json file in the ...
random-user-0901's user avatar
2 votes
0 answers
125 views

Getting error in Android Studiio after installing below packages: "react-native-iap": "^14.4.23", "react-native-nitro-modules": "^0.29.6", Error CMake Error ...
Ajay Kumar Prasad's user avatar
1 vote
2 answers
183 views

I create a project using Expo with React Native and it works on the emulator using Expo. But when I try to compile the project to generate an apk using the command cd android ./gradlew assembleDebug I ...
fabiobh's user avatar
  • 689
0 votes
0 answers
34 views

I have a question about api targets during the app store review process. We're readying a new version of our app, which requires a new version of our api. This is a fairly major overhaul, and not ...
Andrew Steenbuck's user avatar
0 votes
1 answer
53 views

I get the UI error "The specified child already has a parent. You must call removeView() on the child's parent first. " On android emulator when mounting my mapView component . But not on ...
Sahan Rajapaksha's user avatar
0 votes
0 answers
118 views

I am doing a fetch in React Native and am very new to React Native, by the way. const apiUrl = 'http://hermes.hstn.me/api/'; const response = await fetch(apiUrl, { method: 'GET', headers: { '...
mycroft16's user avatar
  • 835
1 vote
1 answer
139 views

I’m trying to build my Expo project using npx eas build --platform android but the build keeps failing due to Android SDK version mismatches and native dependency compatibility issues. The app runs ...
Abdul_Basit's user avatar
0 votes
0 answers
113 views

Here’s the flow I’m trying to achieve: When the user selects my app from the share meun I don’t want the full app to launch Instead I just want to show a modal (like google keep does) and after they ...
Khldon Alkaateh's user avatar