文字居中显示
Center( child: Text( "Log in", textAlign: TextAlign.center, style: TextStyle( fontSize: 20, fontWeight: FontWeight.bold, color: Colors.green), )
Container(
width: MediaQuery.of(context).size.width, //宽度100%
child: Text(
"Log in",
textAlign: TextAlign.center,
style: TextStyle(
fontSize: 20,
fontWeight: FontWeight.bold,
color: Colors.green),
),
),

浙公网安备 33010602011771号