5 min readFlutter WidgetsFlutter Scaffold The Scaffold widget in Flutter provides a framework for implementing basic material design layout structure. This widget is able to...
3 min readFlutter WidgetsFlutter Expanded vs FlexibleExpanded is a shorthand for Flexible with tight fit. Expanded class extends the Flexible class with fit property FlexFit.tight. Flexible...
3 min readFlutter WidgetsFlutter Flexible WidgetThe Flexible widget in Flutter is similar to Expanded. The Flexible widget in Flutter is used to make a child widget to take up a portion...
3 min readFlutter WidgetsFlutter ExpandedThe Expanded widget in Flutter is used to make a child widget expand to fill the available space in the main axis of a Row, Column, or...
4 min readFlutter WidgetsFlutter Gridview The GridView widget in Flutter is similar to a 2-D Array in programming languages. It's used to display widgets on a grid, such as...
4 min readFlutter WidgetsFlutter ListViewIn Flutter, the ListView widget is a scrollable list of widgets arranged linearly, displaying its children one after another in either...
3 min readFlutter WidgetsFlutter Stack & Positioned The Stack widget in Flutter lets you layer multiple widgets on top of each other, positioning them relative to the stack's boundaries or...
5 min readFlutter WidgetsFlutter Row and ColumnIn Flutter, the two most significant and effective widgets are Row and Column. Row and Column are layout widgets used to arrange child...
4 min readFlutter WidgetsFlutter ContainerThe Container widget is a versatile widget used for layout and styling purposes.