Passing Data Using React-Native Navigation
Im trying to pass data between screens in my app. Currently I am using"react-native": "0.46.0", "react-navigation": "^1.0.0-beta.11"I have my index.js import React, { Component } from 'react'; import {...
View ArticleWhite line above BottomTabNavigator in react-native
I just started developing an app in react-native and added a bottom navigation. I then started styling the components and noticed a white line above the navigation, which i simply can't get rid...
View ArticleReact Native - Can't access to contacts, calendar in iOS release mode
I'm developing an app with React Native and I'm struggling with the access to the contacts, calendar and maybe more "native features".I'm using"react": "16.8.3", "react-native": "0.59.9",...
View ArticleScanning ISBN using phone camera
I'm creating an app that is able to scan the ISBN of a book and then populate fields based off of that number. My main issue is I'm struggling to find a good API that does that. I'm using react native...
View ArticleApple Match-O Linker Error / clang: error: no such file or directory - Xcode 11
I am working on a React Native application and whenever I try to build the application I am encountering these errors. I know there are many similar questions on this matter but the solutions given...
View ArticleGPS location fluctuating in react native
I am using GPS location in one of my app in react native. I need to track user location at some intervals. but I am getting different latitude and longitude. I have already set it for high accuracy....
View ArticleNo podspec found for `appcenter` in...
Trying to install microsoft AppCenter on our react-native app and encounter the following issueNo podspec found for `appcenter` in `../node_modules/appcenter/ios/appcenter.podspec` The version number...
View ArticleRNCamera crashes in iOS
I'm developing a video recording app in React Native and I'm using 'react-native-camera' package. Of course, I used RNCamera and the thing is it's fine in android but crashes in iOS. When I open the...
View ArticleUnable to resolve "@react-navigation/drawer" from "App.js" - React Native
I have issues with drawer. I have follow tutorial and create drawer navigation with React Native and I got this error on iOS. But android works fine.Note : I have installed drawer package into my project
View ArticleHow to mark user's current location on map in offline using react-native-maps?
I want to mark the user location using gps and overlay a circle around the dropped pin(i.e the current user location) using react-native-maps. This is working fine in online mode on both android and...
View ArticleReact Native loading new copy of image into memory on entering background in...
I've created a fresh React Native project (v0.60.4) and I'm running it on a real iPhone 11 Pro iOS 13.1.3 in release mode. The app.js is super simple:import React from 'react'; import { SafeAreaView,...
View ArticleFlatList item click is not rendering this
export default class HistoryScreen extends BaseScreen { constructor(props){ super(props); this.state = { mainListData:[], listData:[], searchText:'', }; } listRowPressed(item) {...
View ArticleReact Native developer Menu not loading
Developer menu in ios simulator will not launch with either cmd + D or cmd + ctrl + zthings i've checked (in no order) :cmd + r works properlymyApp and myAppTests schemes are set to debug modeSlow...
View ArticleError when running pod install: Invalid attribute name
I am working with React Native (0.60.4) and cocoapods (1.7.5). When I cd into my ios folder and run pod install, I get the following error: [!] Invalid `Podfile` file: [!]...
View ArticleReact-Native (IOS) - Is there a way to access the files in filestorage e.g...
I want to access the files downloaded by the user on IOS OS in my react-native application. Is it feasible to do that?(as a background process?)
View ArticleReset Push Notifications/Device Registration/Instance Id - App Update via...
Been doing a lot of research on this issue, first my setup:React-native: 0.61.5react-native-firebase: 5.6.0Firebase Messaging 6.15.0My issue quite simple and straight forward though I do not seem to be...
View ArticleWhich version does React Native support (iOS and Android)?
I can't find this information. Is it true that Android React Native runs on sdkMin18 and therefore makes it supported by most android versions?
View ArticleReact Native Expo Ejected App, can't get push token from Device
I use Expo push Notifications to send Notifications to GSM using push token. My code is : registerForPush = async () => { if (Constants.isDevice) { const { status: existingStatus } = await...
View ArticleReact navigation adding "more" tab with a pop up list and not navigate to tab
I am basically trying to add a "more" button for both iOS and ANDROID, which pops up a list of options to choose from. Something that looks like this (IOS more button) and (ANDROID more button).I am...
View ArticleIs there a way to limit my app's network connections to a given set of...
To improve my app's security I'd like to only accept network connections with a set of whitelisted sites.My app uses react-native.I've only found settings to filter non-secure connections (i.e. without...
View Article