2022年6月8日星期三

Limit max width of Container in Flutter(ConstrainedBox)

 Flexible(

  child: ConstrainedBox(
    constraints: BoxConstraints(maxWidth: 150),
    child: Container(
      color : Colors.blue,
      child: Text('Your Text here'),
    ),
  ),
),

沒有留言:

發佈留言