Author Archives: Ashish Kumar

Carousel in React Native

Image Carousel also popularly known as Slider components are one of the most appealing parts of the mobile applications and is used extensively. We can get it through various libraries that provide the slider functionality but today we will be focusing on the custom slider.  We can achieve it using ScrollView but Here we will learn how Continue Reading »

Lifecycle Methods

Today we are going to discuss React life cycle methods. What are the lifecycle methods and how these lifecycle methods work? Let’s start by creating a basic component (say Hello world) which we all have created as a beginner. class HelloWorld extends React.Component {       render() {      return <h1> Hello World </h1>      Continue Reading »