Implementing an Infinite Scroll list in React Native

Introduction While implementing pagination in mobile devices, one has to take a different approach since space is minimal, unlike the web, due to this factor, infinite scrolling has always been the go-to solution, giving your users a smooth and desirable experience. In this tutorial, we will be building an infinite scroll list using the FlatList…

Implementing an Infinite Scroll list in React Native

Introduction While implementing pagination in mobile devices, one has to take a different approach since space is minimal, unlike the web, due to this factor, infinite scrolling has always been the go-to solution, giving your users a smooth and desirable experience. In this tutorial, we will be building an infinite scroll list using the FlatList…

React 16.6: React.memo() for Functional Components Rendering Control

Introduction React 16.6.0 is released! With it comes a host of new features including the two big ones: React.memo() React.lazy(): Code-splitting and lazy-loading with React Suspense We’ll focus on React.memo() for this article and React.lazy() and Suspense in an upcoming larger article. React.memo() is similar to PureComponent in that it will help us control when…

React 16.6: React.memo() for Functional Components Rendering Control

Introduction React 16.6.0 is released! With it comes a host of new features including the two big ones: React.memo() React.lazy(): Code-splitting and lazy-loading with React Suspense We’ll focus on React.memo() for this article and React.lazy() and Suspense in an upcoming larger article. React.memo() is similar to PureComponent in that it will help us control when…

Building a modern app using Nest.js, MongoDB, and Vue.js

Introduction Nest.js introduces a modern way of building Node.js apps by giving them a proper and modular structure out of the box. It was fully built with TypeScript but still preserves compatibility with plain JavaScript. In this post, I will introduce and explain the fundamental steps to follow in order to combine this awesome framework…

Building a modern app using Nest.js, MongoDB, and Vue.js

Introduction Nest.js introduces a modern way of building Node.js apps by giving them a proper and modular structure out of the box. It was fully built with TypeScript but still preserves compatibility with plain JavaScript. In this post, I will introduce and explain the fundamental steps to follow in order to combine this awesome framework…