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