jeetbhalu.hashnode.devRow Image set in FlutterRow Image : MultiChild Widget Align all children Widgets in a horizontal direction Example : import 'package:flutter/material.dart'; void main() { runApp(const MaterialApp( home: RowImages(), )); } class RowImages extends StatefulWidget...Apr 22, 2024·1 min read
jeetbhalu.hashnode.devDrawer Widget in FlutterDrawer : Drawer widget is used to provide access to various destinations and functions within your application. It is symbolized by three horizontal parallel lines at the top of the scaffold. The drawer moves horizontally from the edge of the scaffo...Apr 22, 2024·2 min read
jeetbhalu.hashnode.devRich Text Widget in FlutterRich Text : The RichText widget is used to display text that uses various different styles. The displayed text is described using a tree of TextSpan objects, each of which has its own associated style that is used for that subtree. Depending on the ...Apr 22, 2024·3 min read
jeetbhalu.hashnode.devRow Widget in FlutterRow Widget : The Row widget is a commonly used layout pattern in Flutter applications. It is a multi-child widget that displays its children in a horizontal array. Its main-axis alignment is horizontal, as shown in the image below. Example : impor...Apr 12, 2024·1 min read
jeetbhalu.hashnode.devImage Widget in FlutterImage Widget : Image is a widget that is responsible for displaying images in the Flutter app. There are several ways to load images onto the Flutter app. There are lots of parameters that we can alter to get the desired image in the desired format....Apr 12, 2024·1 min read