文字居中显示

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),
        ),
    ),


 

posted @ 2023-04-27 16:49  小小强学习网  阅读(17)  评论(0)    收藏  举报