在这种情况下,Center和Expanded之间的区别?

时间:2018-04-29 11:49:32

标签: dart flutter flutter-layout

在AppBar居中之后我想要一切。然而,它没有居中。 这就是我的代码。如果有人能告诉我为什么我当前的代码没有以登录密码项为中心,我将不胜感激。

这是我目前的布局

enter image description here

这是我的代码

  UPDATE user 
  INNER JOIN identification_card ON user.id = identification_card.user_id 
  SET user.id_type = identification_card.card_type 
  user.validity = identification_card.expiry_date 




query = """UPDATE user 
  INNER JOIN identification_card ON user.id = identification_card.user_id 
  SET user.id_type = identification_card.card_type 
  user.validity = identification_card.expiry_date"""

cursor.execute(query,data)

我希望它看起来像这样

enter image description here

我知道我可以通过扩展取代中心。为什么这样做?两者有什么区别。任何人都可以澄清Expanded的真正含义吗?

1 个答案:

答案 0 :(得分:0)

使用扩展强制孩子占用可用空间。 Read more here