How to remove extra space around image in React Native?
I have a React Native app and I need to put image on the very top of the screen and also with width from one side of the screen to the other. I have put my image (black rectangle) into…
I have a React Native app and I need to put image on the very top of the screen and also with width from one side of the screen to the other. I have put my image (black rectangle) into…
Everything was working fine until I updated my Xcode to 16.1. Build fails with: ⚠️ ld: ignoring duplicate libraries: '-lc++' ⚠️ ld: Could not find or use auto-linked framework 'CoreAudioTypes': framework 'CoreAudioTypes' not found ⚠️ ld: Could not parse or…
I created a new React Native Project—Cli and installed these npm packages: npm install @react-navigation/native, npm install @react-navigation/stack, and npm install @react-navigation/elements. My project is running perfect but when I install npm install react-native-gesture-handler and run my project using npx…
Uncaught Error: Component 'Privont' has not been registered in React Native App I'm getting the following error in my React Native app: "Uncaught Error: 'Privont' has not been registered. This can happen if: Metro (the local dev server) is run…
i got a project has 3 users roles (parent - child - teacher) and each role has 2 different statues (booked - unbooked) that changes the UI and logic. Example:- the home header in the home page will be change…
I'm working on a React Native project where I'm using React Hook Form for a dynamic form, along with Valibot for validation. I have a scenario where I need to hide some input fields based on certain conditions. However, these…
What is the recommended way to avoid sending debug errors while developing to Sentry in JS and the native side? JS error in Dev mode Native crash error in Dev mode What was tried for Sentry @sentry/react-native version 6.1.0, but…
I have react native app that displays a responsive website. We have a wrapper built around the app to display this responsive website. Now the problem is that in the website we have enabled current location access. This works fine…
I am attempting to send FormData from my React-Native application to my Express (everything in typescript) backend. However, nothing I have attempted has seemed to work. Client Side: const handlePickImage = async () => { try { const result =…
I am trying to implement localization for Expo React Native app. My i18n.js file looks like this: import { getLocales } from 'expo-localization'; import { I18n } from 'i18n-js'; // Set the key-value pairs for the different languages you want…