When you search for integrating maps in React Native, you will see react-native-maps package for that. So, in this blog we will use this same package to integrate the Google maps in your React…
Programming stuff
When you search for integrating maps in React Native, you will see react-native-maps package for that. So, in this blog we will use this same package to integrate the Google maps in your React…
Scalable Vector Graphics (SVG) is an XML based language for describing two-dimensional vector graphics. Most of the modern browsers are supporting SVG images, but using SVG in React Native app we needs to use…
In many applications you see a Collapsible toolbar or a specific section on the app screen that collapsible when you scroll up. So, in this article we will learn how to create this type…
When we start developing the project using the react native, we generally gets the code solutions on web that uses the expo in the back. But some of the things that still not implemented…
Nowadays, selecting a technology for programming for those who are starting a career in programming is so confusing. I’m writing this because when I started my career as a programmer, I’m confused about which…
Filter function is used to filter the data from array with specific condition. This filter function gives an another array with filtered data as an output. In the below example, we use the Flatlist…
State This is a data stored in a specific component. The component is responsible to update the state using the setState function means the state is changed from inside that component in which the…
Go to your project directory and check if this folder assets exists in project directory, if not then create the new folder assets. android/app/src/main/assets Run the command ./gradlew clean from the android folder. cd android.\gradlew clean Note…
In recent years, many mobile application development companies are preferring development in hybrid development platform, the reason behind is that the company can reduce the development cost as a single developer can develop an…
The arrow function is the most popular java script feature introduced in ES6. What is arrow function in javascript ? The arrow function is also called the fat arrow function introduced with ES6 as…