Sushant Dhiman

Sushant Dhiman

Create a Horizontal List in Flutter

Horizontal List in Flutter

A horizontal scroll list is a collection of items that we can scroll horizontally. For the simplest example let’s take Amazon. We can horizontally scroll between products on Amazon. In this tutorial, we are going to discuss how we can…

How to Create a TabBar in Flutter

Flutter Tabs

This tutorial will provide a step-by-step guide to creating TabBar in a Flutter. There are many practical applications of TabBar in mobile applications, such as WhatsApp is using TabBar to navigate between Chats, Status, and Calls pages. So let us…

Flutter State Management: setState

Flutter State Management

In this tutorial, we will discuss one of the most important and most used concepts in Flutter app development: state management. We will learn all the basics and foundations of state management using an inbuilt setState function. After this tutorial,…

Flutter Dialogs: A Step-by-Step Guide

flutter dialog box

Dialogs are one of the most important parts of an app. These can be used to notify users about specific activities such as in-app notifications, options to perform certain actions, etc. In this post, we are going to discuss dialogs…