How to change Shadow Color of Elevated Button in Flutter

How to change Shadow Color of Elevated Button in Flutter

Nowadays, many Flutter developers prefer ElevatedButton as their button. In this Flutter tutorial, let’s check how to change the ElevatedButton shadow color. The styling of the ElevatedButton is done with the help of the ButtonStyle class. The ElevatedButton has shadows by default because of elevation. You can customize the shadow color using the shadowColor property…

How to use Async / Await Keywords in Flutter

How to use Async / Await Keywords in Flutter

Async and Await are two important keywords in programming languages. These two keywords make asynchronous functions read better. In this tutorial, let’s see how to use async and await in Flutter. Following is an asynchronous function where async and await keywords are used. Following is the video where the official Flutter team explains the usage…