React Native offline App using react-native-sqlite-storage
I am new to react native. I want to build an offline react native app for storing user data (Basic user details, user personal documents, images, etc). I already gone through some documents about...
View ArticleHow to get the path of a particular content in the React Native App for both...
I have created a React Native app using third party which creates News posts.I have the entire code for this.How to get the full path (Mobile app URI) of a content/news post.For example if I am posting...
View ArticleReact Native: How to disable PanResponder temporarily?
Below is the snippet for creating an instance of the panResponder: constructor( props ) { super( props ); this.position = new Animated.ValueXY(); this.panResponder = PanResponder.create( {...
View ArticleHow to localize IOS usage description in `app.json` in an Expo-managed workflow?
I want to localize the usage descriptions in the ios.infoPlist key of the app.json file. For example:{"ios": {"infoPlist": {"NSCameraUsageDescription": "This app uses the camera to do...
View ArticleError installing pod with react native integration -
getting error while installing pods:checking for a BSD-compatible install... /usr/bin/install -cchecking whether build environment is sane... yeschecking for arm-apple-darwin-strip... nochecking for...
View ArticleHow to covert String into array in React Native
How to convert String into the array in React Native. for example:-var myString = 'this, is my, string';separate string with "," and output must be myArray = [this, is my, string]; on myArray[0] value...
View Articlereact-native How to open local file url using Linking?
I'm using the following code to download a file (can be a PDF or a DOC) and then opening it using Linking.const { dirs } = RNFetchBlob.fs;let config = { fileCache : true, appendExt : extension,...
View ArticleButton click to show another page without navigation using react native
In my scenario, I am having separate class for example page1, page2 and page3. Here, I need to call Page1 button click to Page 2 without navigation the transition like sudden appear popup screen. How...
View ArticlePhoto Capture using TrueDepth Sensor in React Native
I am currently trying to integrate an image capture logic into my react native app, where I am using the native TrueDepth Sensor on iOS. I have read through a bunch of tutorials bridging native modules...
View ArticleHow to show overlay page using react native for iOS and android?
In my code, I am having two screens with two different class files. Here, I need to do screen one button click to show screen two. Screen two need to show like a overlay screen and if screen two button...
View ArticleHow To stop iOS App to take screenshot in react-native
Is there any Possible way to prevent ios app to prevent screenshot like Netflix do.Need help.
View ArticleHow can I get picked image from ios camera roll exact URI path?
I am stuck today at ios image uri pathIt is giving me path like this.and it is uploading to server as it is so i can't load these images in my view. Please help me anyone...
View ArticleHow do I create an Objective-C bridging header?
I'm following this guide on adding OneSignal to React Native, and there is one section where is says:Open NotificationService.m or NotificationService.swift and replace the whole file contents with the...
View ArticleData on FileSystem.documentDirectory not persisting over app store updates in...
I was working on a project that need some files to be downloaded into storage and later works offline . I am using Expo's Filesystem api to download the file and then saving the file in Expo...
View ArticleDownloading Video in an Application in React Native
I'm creating an app in React Native in which I want to download a video in the application, but that video should not appear in Gallary of the device. It should download in the application's folder....
View ArticleReact Native - StatusBar color iOS and Android
I can't set the color of the status bar on iOS and Android on React Native with Expo.I just managed to hide it. Code : import * as React from 'react';import { WebView } from...
View ArticleCannot find module '@expo/traveling-fastlane-linux' error after expo build:ios?
I am stuck as I am unable to make ios build from expo. I am gettingAuthentication with Apple Developer Portal failed!Cannot find module '@expo/traveling-fastlane-linux'this error when I am trying to...
View ArticleCDN: trunk URL couldn't be downloaded in certain React Native project when...
I have this react native project that im working with multiple computers, in my MacBook everything works fine, when I run "pod install" after running "npm install" the pods project is created...
View ArticleTurn off/on all system notifications (react native)
I want to disable/enable all notifications applications in my device (iOS & Android), or make automatically my device on do not disturb mode, is that possible ?
View ArticleProperty 'passwordRules' not found on object of type 'UIView *'
Getting these errors on initializing a new react native app:Property 'passwordRules' not found on object of type 'UIView *'Use of undeclared identifier 'UITextInputPasswordRules'Steps to reproduce:>...
View Article