In this tutorial you will learn how to use appbar in flutter with example. We will also customize it’s style with different properties. Flutter AppBar Widget AppBar is a material…
A tutorial on how to use bottom sheet in flutter and types of bottom sheets like modal bottom sheet and persistent bottom sheet. Flutter Bottom Sheet Bottom sheet is a…
In this tutorial you will learn how to use expansion panel list in flutter with example. Also learn how to customize it’s style with different properties. Flutter Expansion Panel List…
In this tutorial you will learn how to use expansion panel in flutter with example. We will also customize its style with different properties. Flutter Expansion Panel Widget Expansion panel…
Flutter SnackBar SnackBar is a material widget in flutter used to notify the user with a short message. We will use snackbar after a particular action takes place. For example,…
In this tutorial, you will learn how to use full screen dialog in flutter with example. We will also customize its style with different properties. Flutter Full Screen Dialog Full…
Flutter SimpleDialog SimpleDialog is a material widget in flutter that lets the user choose an option from a set of options. A simple dialog has a title property that is…
Flutter AlertDialog AlertDialog is a material widget in flutter which is used to take confirmation before performing an action. For example, when we try to log out of an application…
In this tutorial we will learn how to use a TimePicker widget in flutter with example. Flutter TimePicker widget TimePicker is a material widget in flutter that lets the user…
In this tutorial we will learn how to use a DatePicker in flutter with example. Flutter DatePicker widget DatePicker is a material widget in flutter that lets the user select…
Flutter Slider Slider is a material widget in flutter which is similar to seek bar. We can use sliders for controlling volume, brightness or seek a video/audio to our desired…
In this tutorial we will learn how to use SwitchListTile widget in flutter with examples. A SwitchListTile widget is a combination of a ListTile and a switch. We can also…
A switch is nothing but an on/off button in flutter. It is used to toggle between on/off which is true/false respectively. In this example tutorial, we will learn how to…
In flutter, RadioListTile is a ListTile with a Radio Button. We can also call it a radio button with a label. In this example tutorial, we will discuss how to…
In flutter, Radio Button is a material widget. We can use it in cases where the user has to select a single value from a set of values. If one…
In flutter, CheckboxListTile is a ListTile with a Checkbox. We can also call it as a checkbox with a label. In this example tutorial, we will learn how to use…
Flutter ListTile Listtile is a material widget in flutter used to display some text and an icon or other widget. We can have the widget at the start or end…
In flutter, checkbox is a material widget. It is used to display a group of options so that the user can select a few or all the options. In this…
Flutter Buttons Buttons are material components in flutter which are used to trigger actions like submitting forms, making selections, etc in applications. Buttons are one of the most used components…
In flutter, popup menu button widget is nothing but a popup / overflow menu in android and ios. It is similar to flutter dropdownButton but has additional features. In this…