Image Widget – Flutter Widget Guide By Flutter Agency
What is Image Widget ? Image Widget is generally a simple component that represents a thing or a group of things pictorially or which simply boosts the message or the text with a pictorial example to make the user understand better
RowImage Widget – Flutter widget Guide By Flutter Agency
What is RowImage Widget? RowImage Widget is a widget that displays dart:ui.Image directly. RowImage Widget is rarely used. The constructor of it will look like below : RowImage({ Key key, Image image, double width,
How To Create Buttons With Different Styles In Flutter
In this article, we will learn how to create buttons with different styles in flutter. Every project has different designs and because of that, we need to create buttons with different styles in flutter. Our final output will look like below. Let's
ImagePicker Widget – Flutter Guide By Flutter Agency
In this article, we are going to learn ImagePicker Widget to pick images from the gallery in a flutter. What is ImagePicker Widget? A Flutter plugin library for both iOS and Android that is been used to pick an image from a
Container Widget – Flutter Widget Guide By Flutter Agency
In this article, we will learn about Container Widget. What is a Container Widget? Container Widget is nothing but the parent widget that contains a child widget and manages its a property like height, width, color, background, and so on. It will
Jumping Dots Animation in Flutter – Flutter Agency
Today we will learn how to create jumping dots animation in Flutter. The Facebook messenger uses jumping dots for message typing indication. Our final result will look like this. We will start with basic steps. Create Dot widget Dot widget is a
ListView Widget – Flutter Widget Guide By Flutter Agency
ListView Widget is one of the important widget types that can be used anywhere. Purpose of ListView Widget ListView Widget has been introduced to reduce the overload of having various layouts performing the same task. Why the ListView widget is required? If you are
GridView Widget – Flutter Widget Guide By Flutter Agency
GridView Widget in Flutter is a used to display the data in two-dimensional rows and columns.users can choose any item by tapping on them.GridView Widget may contain Text Widget as item or Image widget as an item or it can
TextField Widget – Flutter Widget Guide By Flutter Agency
In this tutorial, we will implement TextField Widget in flutter and will learn about how to get data from TextField Widget in flutter. What is TextField Widget in Flutter? TextField Widget is used to get data from users and perform the desired
Row Widget – Flutter Widget Guide By Flutter Agency
In this article, we will explore how to place the widget in Row Widget. Within the Row Widget, we can place multiple widgets in a row align horizontally. Similarly, we have Column Widget where the elements or child are arranged vertically
Expanded Widget – Flutter Widget Guide By Flutter Agency
What is Expanded Widget? Expanded Widget is a widget that expands a child of a Row Widget, Column Widget, or Flex so that the child fills the available space. Why we need Expanded Widget ? When a user wants to fill between widgets user