Author: Siddhartha Verma

In this tutorial, you are going to learn how to add a border around a button in Flutter. For this tutorial, we’ll be focusing on the RaisedButton class in Flutter and editing its properties. RaisedButton RaisedButton widget in Flutter creates Material-specific buttons. It provides two required parameters, onPressed and child, where onPressed takes a function (i.e. what happens…

Read More Add Border Around a Button in Flutter

In this tutorial, we will be exploring different techniques to integrate custom fonts into your Flutter projects. Having the ability to use custom fonts can add an extra touch of uniqueness and creativity to your applications, making them stand out from the rest. Throughout this tutorial, we will be discussing two different approaches for incorporating…

Read More Using a Custom Font in Flutter

In this Flutter tutorial, you will learn a few different ways of fetching an image from the Internet. Fetching an image in Flutter is very easy. You can either use a widget or a Provider and wrap it with a widget. Let’s see how it’s done! Using Image.network() Constructor Flutter provides an Image widget to display…

Read More Fetching Image from Internet in Flutter

Introduction Data tables are another indispensable part of everyday UI. We can provide information in a clear and concise manner, which is especially helpful owing to the fact that mobile displays are (relatively) small. Today we’ll be covering DataTables in Flutter. The blog is divided into two parts: In Part 1: we go over the basics…

Read More DataTables in Flutter – Explained

There are multiple ways of adding App Icon in Flutter, and here I’m going to cover some of those methods. Method 1: Using flutter_launcher_icons Package The flutter_launcher_icons package takes in a source png file and generates icons for both iOS and Android. To learn more about the flutter_launcher_icons package check out this link. Below are short instructions…

Read More App Icon in Flutter. Ways to Generate and Change app Icon.

In this Flutter tutorial, you will learn about different types of Switches in Flutter. Simple/Material Switch A Switch widget takes a boolean value parameter and onChanged function parameter. Switch( value: value1, //boolean value onChanged: (val) { setState(() { value1 = val; }); }, ), Material Switch Cupertino Switch A CupertinoSwitch is exactly the same as a normal (Material) Switch…

Read More All types of Switches in Flutter

In this Flutter tutorial, you will learn how to do basic form validation in Flutter. We will go through it step by step, and you’ll learn how to use Form and TextFormField widgets in Flutter. Creating a New Flutter App First, we’ll create a new Flutter app to work with. This tutorial assumes you have…

Read More Form Validation in Flutter with a Practical Example