Tag: React Native
Rename package name in React-native
In react-native, To create a new application we use the following command: react-native init MyApp This command will create a package name with com.myapp. Sometimes, if your application is created with the wrong package name or bundle id or you
Increase React Native App Performance
React Native apps have numerous benefits like they are fast, cost-efficient, and offer a nearly native look. But, when it is not done properly, it can lead to performance issues. So, while making you react to native applications, developers need
Integrate Google Photos in React-Native
Using the Google Photos Library API your app can read and write the photos in google photos or you can use them as a photo gallery in your application. To integrate google photos in the react-native application you first need
React Native Push Notification – IOS
Push Notification A push notification is a message that pops up on a mobile device to notify a user that a specific action has occurred in that mobile app. Below are the steps to configure Firebase in your application (To
Persist Data Using AsyncStorage in React Native
Persist Data Using AsyncStorage in React Native There are various ways to preserve the data in React Native but AsyncStorage is the most recommended way to persist data in your React Native applications as it is a built-in feature. AsyncStorage
Facebook Share – React Native
Facebook Share-React Native React native provides Facebook SDK to integrate facebook APIs in react native application. It can be used for both (iOS and Android) platforms. Below is the documentation to configuration this package for android: Installation: 1. Go to
How to read Mobile Hardware and Operating system Details in React Native
Steps to read Mobile Hardware and Operating system Details in React Native To get the android and ios device information like UDID, version, build, operating system etc – We can get this information by using react-native-device-info plugin provided by react
How to access camera in React Native
Steps to access the camera in React Native There are lots of method to use camera in react-native. Here I have used react native Image Picker. A React Native Image Picker library allows you select a photo/video from the device