📜  颤振列 - 任何代码示例

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

代码示例3
Column(
  children: [
    Text('Deliver features faster'),
    Text('Craft beautiful UIs'),
    Expanded(
      child: FittedBox(
        fit: BoxFit.contain, // otherwise the logo will be tiny
        child: const FlutterLogo(),
      ),
    ),
  ],
)