How to Freeze Elements to Percentage of Screen Width/Height in Flutter?
Every Mobile Application requires to set Fix Height/Width. While Applying Height/Width to a particular Screen the Developer needs to make sure that it doesn't get an Overflow Error. In this article, we will learn about How to Freeze Elements to
How to Add Shadow to Widget In Flutter?
In a Mobile Application Design, you might have been through some screens contain a card or images with a shadow in them. So in this article, we will be through How to Add Shadow to Widget In Flutter. How to Add
How to Change the Application Launcher Icon on Flutter?
When users create a project using the command Flutter Create projectname user will get FlutterLogo as an application launcher icon on Flutter Mobile Application. To replace this Flutter Logo users need to follow the below instructions. So let's get started
SizeTransition Widget – Flutter Widget Guide By Flutter Agency
Earlier we have been through Transition Widget in Flutter like ScaleTransition Widget, RotationTransition Widget, FadeTransition Widget so now let us add one more Transition Widget to the list that is SizeTransition Widget. What is SizeTransition Widget in Flutter? SizeTransition Widget is a
Draggable Widget – Flutter Widget Guide By Flutter Agency
What is the Draggable Widget in Flutter? Draggable Widget allows a widget to be dragged, a DragTarget provides a destination for the draggable. A widget that can be dragged from to a DragTarget. When a draggable widget recognizes the start of
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
Opacity Widget – Flutter Widget Guide By Flutter Agency
What is the Opacity Widget in Flutter? Opacity Widget is a simple property that can have huge effects on the user interface of a mobile app. For example, a button with less opacity makes the user convince that the button is
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
PageView Widget – Flutter Widget Guide By Flutter Agency
What is PageView Widget in Flutter? PageView Widget in flutter is used to make a Swipeable Widget list. PageView Widget supports both Vertical and Horizontal swipeable scrolling. In PageView Widget each child widget should be in the same as Parent Viewport. If
CustomScrollView Widget – Flutter Widget Guide By Flutter Agency
What is CustomScrollView Widget in Flutter? CustomScrollView Widget is basically a ScrollView with some effects. With CustomScrollView Widget, you can create various scrolling effects like grids, lists, and expanding headers. CustomScrollView constructor will look like below : CustomScrollView( {Key? key, Axis scrollDirection = Axis.vertical, bool
SliverAppBar 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 a SliverAppBar Widget in a flutter
Switch Widget – Flutter Widget Guide By Flutter Agency
Earlier we have been through Tooltip Widget so now in this article we will be discussing Switch Widget is used to toggle a setting between on/off which is true/false respectively. What is Switch Widget? When the switch is on, the value returned