📜  颤振列 - Dart 代码示例

📅  最后修改于: 2022-03-11 14:48:07.105000             🧑  作者: 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(),
      ),
    ),
  ],
)