React native navigation to second page
I want to create a basic ScrollView in which the first page will be visible and it will take the full height of the screen. When user clicks my button I want to scroll to the second page which will…
I want to create a basic ScrollView in which the first page will be visible and it will take the full height of the screen. When user clicks my button I want to scroll to the second page which will…
We are trying to center a title in React Native while also getting it pushed against the icons to the right and left as close as possible. As you can see from the image this version on this app doesn't…
I am trying to use react-native-selectable-text in my react native project. but when I build the project on android emulator it fails and this message appears FAILURE: Build failed with an exception. * What went wrong: Could not determine the…
link here to see Error Image I can't run the React native app it gives this error so how to fix it? I am using Intel chip. Please anyone can provide an answer I tried many ways. like re-installing cocoa…
I face this issue and I do not have any clue about what is cause the problem. It's about a React Native App, I didn't install anything from days or change code. It's happen from the moment I update my…
I am developing an iOS app using React Native and Firebase. When I did the following, an error occurred. Install “@react-native-firebase/firestore” cd ios && pod install I got the error "The Swift pod FirebaseFirestore depends upon FirebaseCoreExtension and FirebaseFirestoreInternal, which…
The part of the code that is causing the problem has the following syntax: import axios from "axios"; const handleLogin = () => { const user = { email:email, password:password, }; axios.post("http://localhost:8082/login", user).then((response) =>{ const token = response.data.token; AsyncStorage.setItem("authToken",token); router.replace("/(tabs)/home")…
In React Native's FlatList, create a list in the horizontal direction, and in the Container, create a View with a width of 50 or less, in addition to the FlatList. Then, if the width of the ListItem is set to…
I have created a mobile app using Expo and get this error when trying to use react-native-maps on an Android emulator. Image from Android emulator I modified the app.json file as follows to include the api key as follows: "android":…
I'm trying to run my React Native application, developed with Expo, on an ios device I own. Following advice from this thread, I've set the "preview" profile in eas.json to contain the following rule: "ios": { "simulator": true } And…