Hi Guys, In this article, we are learning about Duplicate resources React Native Android error. generally, we face this error while creating a signed apk or production build. To create React Native Android build we need to create index.android.bundle inside the asset folder. to create this bundle check this post. after…
Read MoreCategory: Pro Level
How to implement firebase remote config in React native
Hi Guys, In this article, we are going to learn about How to implement firebase remote config in React native. This is Firebase’s one of the important feature which used to transfer data dynamically in published Application. you can transfer the base URL in the Application through the Firebase Remote…
Read MoreHow to download File in React Native iOS using URL
In this article, we are going to learn about How to download File in React Native iOS using URL. Before going to proceed with this React Native IOS example. I want you to go through my previous article which was written for How to download File in React Native Android.…
Read MoreHow to create Multiple Environments in React Native Android
Hi Guys, In this article, we are going to learn about How to create Multiple Environments in React Native Android. Generally, developers need to create multiple environments for their project to share the build with the Internal testing team or to make App live on the play store. to do…
Read MoreCustom Progress bar in React-Native
Hi Guys, I this article, we are creating a Custom Progress bar in React-Native. There are many dependencies and plugins available to display the Progress bar but if a developer wants to customize these progress bar then it’s very complex to do this. So I create a simple Progress bar…
Read MoreCustom toggle switch in React Native
Hi Guys, In this article, we are going to learn about Custom toggle switch in React Native. There are many dependencies and plugins available for the toggle switch, I had used one of them but I was facing many issues with that like it’s not customizable, in some libraries preselection…
Read MoreHow to use useFocusEffect in React Navigation 5.x
Hi everyone, In this article, we are going to learn about How to use useFocusEffect in React Navigation 5.x. React Navigation is the most important dependency used to navigate between screens in React native and as the version changes, there are some changes in syntax. so in this article, we…
Read MoreHow to remove objects from array in React Native
Hi everyone, In this article, we will learn about How to remove objects from array in React Native. While developing a mobile application developers need to add or remove particular objects from the array list so, in this example, we are creating a project to remove objects from the array…
Read MoreHow to download File in React Native using URL
In this article, we are going to learn about How to Download File in React Native using URL. to do this there are some libraries available like react-native-fetch-blob, react-native-fs, rn-fetch-blob but most of the users using rn-fetch-blob. you can see the graph for usage here Basically, the rn-fetch-blob is a…
Read MoreHow to upload file to Server with From Data in React native
In this article, we will learn about How to upload file to Server with From Data in React native. we are going to use React native Fetch request to send the file to the server. and we are using Form data to upload files to the server. it is better…
Read More