I\'d like to know how to center the contents of a Text widget vertically and horizontally in Flutter. I only know how to center the widget itself using Center(child: T
Center(child: T
child: Align( alignment: Alignment.center, child: Text( 'Text here', textAlign: TextAlign.center, ), ),
This produced the best result for me.