column text align left flutter code example
Example 1: flutter align top right
Align(
alignment: Alignment.topRight,
child: Text("widget"),
)
Example 2: flutter column align
Row( crossAxisAlignment: CrossAxisAlignment.start, verticalDirection: VerticalDirection.down, children: [ Text( 'Flutter', style: TextStyle( color: Colors.yellow, fontSize: 30.0 ), ), Text( 'Flutter', style: TextStyle( color: Colors.blue, fontSize: 20.0 ), ), ],);