📜  列颤动 - Dart 代码示例

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

代码示例5
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(),
      ),
    ),
  ],
)