Flutter Widgets

In this section you can browse through the widget list

Row widget

The Row widget is a horizontal layout widget in Flutter that allows you to display multiple widgets side-by-side in a single row. It is ideal for scenarios where you want to display multiple widgets such as icons, text, or images in a row, and you want to control their alignment

Read More »

Text Widget

Text Widget is one of the simplest and most used widgets that flutter provides. It is essentially a way of presenting text on the screen. Depending on the constraints that we have defined for our layout, there is the possibility to break the text into multiple lines and / or

Read More »

Scaffold Widget

Scaffold widget is one of the core widgets of Flutter. It is actually used to provide a structured view of a screen and in other words it implements the basic material design visual layout. It contains all the elements that we need to create a responsive Flutter application and usually

Read More »

Container Widget

Container Widget is a very important element of flutter applications and it is considered a parent widget which includes several child widgets. Its importance is coming from the fact that with a container we can control multiple parameters of the child widgets such as the width, the height, the margin,

Read More »