Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

请问 flutter Center->Column 布局为什么没有居中呢?

RT: 请问如何让它跑到红框子的位置?

body: Center(
      child: Column(
    children: [
      Text(
        '为什么我不是居中的?',
        style: TextStyle(color: Color(0xFFFFFFFF), fontSize: 18.0),
      ),
    ],
  )),

image


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
      body: Center(
          child: Column(
            mainAxisAlignment: MainAxisAlignment.center,
            children: [
              Text(
                '我居中了。',
                style: TextStyle(color: Color(0xFF000000), fontSize: 18.0),
              ),
            ],
          )),

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...