Widgets

In many cases, we may need a UI element which can be dragged from one point to another point on the screen. So, for those cases, Flutter introduces Draggable widget. This widget allows the movement of widgets across the screen. When a widget is draggable, usually it needs to be dropped at a certain location. […]

Continue Reading  

In this article, we will discuss the use of the Form widget in flutter and also add validation to it. What shall we do today is to add two text fields i.e. one for email and another for password? First of all, we should know some basic information about the form widget. Forms are one […]

Continue Reading  

Widgets in Flutter are associated with certain methods that demonstrate different stages of the widget from its initialization to destruction. These methods are known as the Lifecycle Methods of Flutter Widgets as they help determine the Lifecycle of the Widgets. It is however important to understand that the application lifecycle is not the same as […]

Continue Reading  

In this guide, we are going to learn the concept of a hero animation in Flutter, how to create it, and learn different properties of it, and we will look at examples of hero animation. First of all, we should know what is hero animation in a flutter. The Hero refers to the widget that […]

Continue Reading  

Learn How To use Lottie Animation In Your Flutter Apps Animations in mobile applications play a huge role to enhance the end-user experience. It helps to express ideas and emotions in an easy way. Well-designed animations make a UI feel more intuitive, contribute to the slick look and feel of a polished app, and improve […]

Continue Reading  

In this article, we are going to learn the concept of a widget, how to create it, and the different types of widgets available in the Flutter framework. For Understanding the basic widget that is used in a flutter, first of all, we should know what is a widget in a flutter. Also read: Insights […]

Continue Reading  

One of the initial concepts that trigger developers when beginning to explore Flutter is the fact that everything in Flutter is a widget. The Google’s UI toolkit supporting cross platform application development bases its core on Widgets. Hence, one must clearly understand the concepts of Widgets before diving into deeper complexities.

Continue Reading