Text Widget – Flutter Widget Guide By Flutter Agency
What is a Text Widget? Text Widget allows you to display text in your Flutter application. In this article, we will see how to use a Text Widget in your application along with how to style a Text Widget with references
NotificationListener Widget – Flutter Widget Guide By Flutter Agency
In Flutter, every Scrollable sends Notifications that contains information about the current scroll state. Users can catch these notifications by using a NotificationListener Widget. What is NotificationListener Widget in Flutter? NotificationListener Widget will listen for Notifications bubbling up the tree. Notifications will
Theme Widget – Flutter Widget Guide By Flutter Agency
Users can either define app-wide themes or use Theme Widget that defines the colors and font styles for a particular part of the application. In fact, app-wide themes are just Theme Widget created at the root of an app by
ScrollBar Widget – Flutter Widget Guide By Flutter Agency
What is ScrollBar Widget in Flutter? A ScrollBar Widget that can be dragged for quickly navigation through a vertical list. A ScrollBar Widget indicates which portion of a Scrollable Widget is actually visible. The constructor of Scrollbar will look like below : Scrollbar({
IconButton Widget – Flutter Widget Guide By Flutter Agency
What is IconButton Widget? IconButton Widget acts just like a button, but with an icon instead of a usual button. IconButton is available to use by importing 'package:flutter/material.dart'. Most likely, you've already imported that library. To create an IconButton, just call the
Date&Time Picker Widget – Flutter Widget Guide By Flutter Agency
In this article, we will learn about a simple way to display either date, or time, or Date&Time Picker Widget using library datetime_picker_formfield: ^0.1.8 along with how to get the date value and setting initial value. Dependencies : There is a package that
ExpansionPanel Widget – Flutter Guide By Flutter Agency
Flutter has a really good widget to achieve expand/collapse functionality. It has ExpansionPanelList & ExpansionPanel to create an expand/collapse view. As we know in Flutter everything is a widget and hence Flutter ExpansionPanel is also a widget that you can
WidgetsApp Widget – Flutter Widget Guide By Flutter Agency
Earlier, we have been through Chip Widget so now in this article we will discuss a WidgetsApp Widget is a class that wraps a number of widgets that are commonly required for an application. What is WidgetsApp Widget? WidgetsApp Widget provides is
Chip Widget – Flutter Widget Guide By Flutter Agency
In Flutter Chip Widget you have to learn Action chip, Choice chip, Filter chip, Input chip & Raw chip. What is Chip Widget in Flutter? Chip Widget can be used to present the place, tag, category, etc… in a beautiful manner.We have
Stateful Widget – Flutter Widget Guide By Flutter Agency
What are Widgets in Flutter? Everything in Flutter consists of Widgets including but not limited to, visible Screens, Text, Buttons, Material Designs, Application Bar as well as invisible Containers and Layouts. A flutter application is just a combination of widgets. In the previous
Bottom Navigation Bar – Flutter Widget Guide By Flutter Agency
What is the Bottom Navigation Bar? Bottom Navigation Bar always stays at the bottom of your mobile application and provides navigation between the views of the mobile application. Each Bottom Navigation Bar item denotes a different sub screen or feature of an
Navigation Drawer – Flutter Widget Guide By Flutter Agency
Earlier, we have discussed Navigation Drawer in Scaffold article. In this article, we will get into detail for it and it's page routing through the article. Its concept comes from android native applications. In Native application, we were using Fragments and Drawer