How to Connect React Native Application with Laravel API

How To Connect React Native Application With Laravel API Tutorial

In this application tutorial, I have described How To Connect React Native Application With Laravel API. I am using the iOS Simulator for this example. How to Connect React Native Application to Laravel To connect React Native app to Laravel, use the fetch() API. React Native application works on the front end, and Laravel API works … Read more

React Native FlatList: The Complete Guide

React Native FlatList Tutorial Example From Scratch

There have been quite a few ways to create a scrolling list in React Native, and most notably, they have been the ScrollView and the FlatList. React Native FlatList React Native FlatList is a built-in component to make an efficient scrolling list of data. There are two primary props you need to know in the … Read more

React Native Fetch: The Complete Guide

React Native Fetch Example Tutorial From Scratch

In this tutorial, we will see how to integrate the React Native app with backend code using fetch API. Networking is an inherently asynchronous operation. What is fetch in JavaScript? Fetch is the best Promise-based networking API in JavaScript. The fetch allows you to make network requests similar to XMLHttpRequest(XHR). The fetch() method only has one … Read more

React Native Redux: The Complete Guide

React Native Redux Tutorial Demo

Redux is a standalone state management library that can be used with any library or framework. For example, if your background is React developer, you have used the Redux library with React. React Native Redux To persist data in React Native application, use the redux library. The primary use of Redux is that we can … Read more

React Native Swiper: A Practical Guide

React Native Swiper Component Example

Swipe gestures are reflexive to leave sloppy smear marks across our screens. In this tutorial, we’ll build  React Native swiper components in both Android and iOS simulators. So let us install React Native on mac and start working on our demo project. React Native Swiper To create a swiper component in React Native, use the react-native-swiper. The … Read more

React Native Navigation: The Complete Guide

React Native Navigation Example Tutorial

React Native Navigation is a native navigation implementation, not a JavaScript-based implementation. Instead, react-navigation is born from the React Native community’s need for an extensible yet easy-to-use navigation solution written entirely in JavaScript on top of robust native primitives. In React.js, we have used the react-router-dom library to route the components. For a React Native … Read more