Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

在设置 textAlign: TextAlign.left 后发现 Text 并没有像预期那样 文字居左

设置 backgroundColor 后发现 Text 的宽度很小,并不是等于容器宽度

请问 如何让 flutter Text 的宽度等于容器宽度呢?

  Container(
    margin: EdgeInsets.only(top: 10, bottom: 10),
    child: Text(
      this.title,
      textAlign: TextAlign.left,
      style: TextStyle(
          color: Color(0xFFFFFFFF), backgroundColor: Colors.red),
    ),

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

1 Answer

emmm,看看具体代码。我把这个container拿去运行是可以居左的。。。


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share

548k questions

547k answers

4 comments

86.3k users

...