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
How to Change Package Name in Flutter?
In this article, we will discuss how to change package name in flutter? Packages, according to Flutterdocs, can be explained as “shared packages contributed by other developers to the Flutter and Dart ecosystems. It will allow developers to quickly build an
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