I have 5 elements in a Column, and I make them cross in start, and I need to add another element 'Text' in the center of the column, So How do I make my Text centered in the entire Column, and the rest elements to the right start?
In column one element wrap with Align widget
Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text('in start'),
Align(alignment: Alignment.center, child: Row(children: [ Icon(), Text() ] )),
Align(alignment: Alignment.center, child: Text("test")),
Text("test"),
Text("test"),
Text("test"),
],
),
Ouput:

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With