Flutter Rich Text Widget

Sometimes we want to show a line or a paragraph with multiple styles such as bold, italicized, underlined, different color, different font or everything at once. In that case, we should have to use the RichText widget that allows us to perform multiple test styles without switching many widgets. RichText is a very useful widget in Flutter,… Continue reading Flutter Rich Text Widget

Published
Categorized as 4. Text

Text Widget Constructor:

The text widget constructor used to make the custom look and feel of our text in Flutter: The following are the essential properties of the Text widget used in our application: TextAlign: It is used to specify how our text is aligned horizontally. It also controls the text location. TextDirection: It is used to determine how textAlign values… Continue reading Text Widget Constructor:

Published
Categorized as 4. Text

Flutter Text

A Text is a widget in Flutter that allows us to display a string of text with a single line in our application. Depending on the layout constraints, we can break the string across multiple lines or might all be displayed on the same line. If we do not specify any styling to the text widget,… Continue reading Flutter Text

Published
Categorized as 4. Text

Column

This widget arranges its children in a vertical direction on the screen. In other words, it will expect a vertical array of children widgets. If the child widgets need to fill the available vertical space, we must wrap the children widgets in an Expanded widget. A column widget does not appear scrollable because it displays the widgets… Continue reading Column

Row Widget

This widget arranges its children in a horizontal direction on the screen. In other words, it will expect child widgets in a horizontal array. If the child widgets need to fill the available horizontal space, we must wrap the children widgets in an Expanded widget. A row widget does not appear scrollable because it displays the widgets… Continue reading Row Widget

Row and Column

In the previous sections, we have learned to create a simple Flutter application and its basic styling to the widgets. Now, we are going to learn how to arrange the widgets in rows and columns on the screen. The rows and columns are not a single widget; they are two different widgets, namely Row and Column.… Continue reading Row and Column

Flutter Container

he container in Flutter is a parent widget that can contain multiple child widgets and manage them efficiently through width, height, padding, background color, etc. It is a widget that combines common painting, positioning, and sizing of the child widgets. It is also a class to store one or more widgets and position them on the screen… Continue reading Flutter Container