I wanted to align some Text() to be in the center of a column. I tried wrapping it in Center(Text()) but that did not work. Instead what I found out was a factor of Text() called textAlign: TextAlign.center
Here was the final code
....child: Column( mainAxisAlignment: MainAxisAlignment.center, mainAxisSize: MainAxisSize.min, children: [ const Text( 'Add New Prayer Request', textAlign: TextAlign.center, ), ...