相当于在颤动中wrap_content和match_parent?

在Android中match_parentwrap_content用于自动调整窗口小部件相对于其父控件的大小,使其相对于窗口小部件包含的内容。

在Flutter中,似乎默认情况下所有小部件都设置为wrap_content,我将如何对其进行更改,以便可以填充其widthheight其父项?

回答:

您可以使用小技巧:假设您有以下要求:

 //use this as child

Wrap(

children: <Widget>[*your_child*])

 //use this as child

Container(

height: double.infinity,

width: double.infinity,child:*your_child*)

 //use this as child

Row(

mainAxisSize: MainAxisSize.max,

children: <Widget>[*your_child*],

);

 //use this as child

Column(

mainAxisSize: MainAxisSize.max,

children: <Widget>[your_child],

);

以上是 相当于在颤动中wrap_content和match_parent? 的全部内容, 来源链接: utcz.com/qa/400344.html

回到顶部