OutlineButton Widget – Flutter Widget Guide By Flutter Agency
In the previous article, we have discussed RaisedButton Widget in this article we will be discussing OutlineButton Widget. What is OutlineButton Widget? Flutter comes with an inbuilt widget is known as OutlineButton to set the border on a button.OutlineButton Widget is used
AlertDialog Widget – Flutter Widget Guide By Flutter Agency
An AlertDialog Widget is a useful feature that notifies the user with important information to make a decision or provide the ability to choose a specific action or list of actions. It is a pop-up box that appears at the
SnackBar Widget – Flutter Widget Guide By Flutter Agency
What is SnackBar Widget? SnackBar Widget is a widget to show a lightweight message at the bottom of the screen. It can also contain an optional action. For display, a SnackBar in a flutter all you need to do is to add
ConstraintBox Widget – Flutter Widget Guide By Flutter Agency
What is ConstraintBox Widget? ConstraintBox Widget you will be able to impose additional constraints on its child widgets. For example, if you wanted a child to have a minimum height of 80.0 logical pixels, you could use const BoxConstraints(minHeight: 80.0) as the constraints. The
Checkbox Widget – Flutter Widget Guide By Flutter Agency
In the earlier article, we have gone through RadioButton Widget where if one radio button in a group is selected, the others are un-selected. so in this article, we learn about Checkbox Widget. What is Checkbox Widget? If the user needs to
SingleChildScrollView Widget – Flutter Guide By Flutter Agency
In flutter, there are 11 different types of widgets available to achieve scrolling functionality with different tasks. To create a simple vertical ScrollView which can contain a different type of widgets with different behavior we would use SingleChildScrollView Widget. How
DecoratedBox Widget – Flutter Widget Guide By Flutter Agency
What is DecoratedBox Widget? DecoratedBox Widget paints a decoration onto another box like a container widget that is a child of DecoratedBox. DecoratedBox which defines the decoration you want. Container Widget inserts its child by the widths of the borders; this widget
MediaQuery Widget – Flutter Widget Guide By Flutter Agency
What is MediaQuery Widget? The MediaQuery Widget is a widget similar to Theme in that you can use the BuildContext to access it anywhere in the app. This is done via a method on the MediaQuery class called off. The method
MaterialApp Widget – Flutter Widget Guide By Flutter Agency
What is MaterialApp Widget? MaterialApp Widget is a predefined class in a flutter. It is likely the main or core component of flutter. We can access all the other components and widgets provided by Flutter SDK. Text widget, Dropdown button widget, AppBar
CircularProgressIndicator Widget – Flutter Widget Guide By Flutter Agency
What is CircularProgressIndicator Widget? To indicate the waiting process in your application, it may be necessary to display a progress indicator. For that purpose, one of the suitable widgets is CircularProgressIndicator Widget. It displays the progress in a circular shape. LinearProgressIndicator Widget
PopupMenuButton Widget – Flutter Widget Guide By Flutter Agency
What is PopupMenuButton Widget? PopupMenuButton Widget is a popup menu with a text and an image. Almost all the medium-scale applications have this feature. PopupMenuButton makes your app clean and creates a great user experience. The PopupMenuButton Widget is similar to the
Icon Widget – Flutter Widget Guide By Flutter Agency
What is Icon Widget? Icon Widget is the primary way of introducing Icons in Flutter. Flutter does its own rendering of these icons instead of the usual Android’s way of importing assets as part of the App project itself. Instead, it takes