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
AppBar Widget – Flutter Widget Guide By Flutter Agency
AppBar Widget is the main widget in any Flutter app. It sits at the top of the application and mostly controls major action items. In today's article, we will learn about how to design an AppBar in a flutter app. What
Google and Canonical Joins Hands together to enable Linux Desktop App Support With Flutter
Flutter SDK From Google has aimed to provide a portable cross-platform application possible from a single, shared codebase, with desktop platforms like Mac, Windows, and Linux has always been on the roadmap. Google LLC’s said today it’s forging a partnership with
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
Padding Widget – Flutter Widget Guide By Flutter Agency
What is Padding Widget? Padding Widget is used to set space between Text content and defined text content area. It's like a margin type but only applied on Text to set space between border defined area. There are two ways to
How to add a border to a widget in Flutter?
Hope you guys have been through our Container Widget article in which we have learned about various properties of Container Widget like Color, Alignment, FractionalOffset, AlignmentDirectional, Decoration, and other properties in detail. In this article, we will go through discuss Decoration
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
RadioButton Widget – Flutter Guide By Flutter Agency
What is RadioButton Widget ? RadioButton Widget itself does not maintain any state. When one radio button in a group is selected, the others are un-selected. This means only one option is accepted at the same time. Instead, when the state
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