📜  颤振容器自动扩展 - 任何代码示例

📅  最后修改于: 2022-03-11 14:58:17.742000             🧑  作者: Mango

代码示例1
Container(
    constraints: BoxConstraints(
    maxHeight: double.infinity,
),
child: Column(
children: [
  Text(
    'Hello flutter...i like flutter...i like google...',
    softWrap: true,
    style: TextStyle(
        color: Colors.white, fontSize: 20 , ),

  ),],),)