1. ホーム
  2. ヒラメキ

[解決済み】flutterのwrap_contentとmatch_parentに相当するもの?

2022-04-06 01:25:59

質問

アンドロイドの場合 match_parentwrap_content は、ウィジェットのサイズを親からウィジェットが含むコンテンツに対して自動的に相対的に変更するために使用されます。

Flutterでは、デフォルトですべてのウィジェットに wrap_content を埋めるにはどうしたらいいのでしょうか? widthheight を親と同じにするか?

解決方法は?

ちょっとしたコツでできる 例えば、.NET Frameworkの要件があるとします。 ( 幅,高さ )

Wrap_content ,Wrap_content :

 //use this as child
 Wrap(
  children: <Widget>[*your_child*])

Match_parent,Match_parentです。

 //use this as child
Container(
        height: double.infinity,
    width: double.infinity,child:*your_child*)

Match_parent,Wrap_content :

 //use this as child
Row(
  mainAxisSize: MainAxisSize.max,
  children: <Widget>[*your_child*],
);

Wrap_content ,Match_parent:

 //use this as child
Column(
  mainAxisSize: MainAxisSize.max,
  children: <Widget>[your_child],
);