一个200*200的红色框里面显示一个100*100的黄色框,该怎么实现
来源:15-6 Flutter Plugin开发指南-Android端实现-2【打通Flutter与Android的任通二脉】
qq_夜_71
2020-10-05
下面的代码实现的效果是一个200*200 的黄色框,为什么?
class _textState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: Container(
color: Colors.red,
width: 200,
height: 200,
child: Container(
width: 100,
height: 100,
color: Colors.yellow,
child: Text('英雄联盟'),
),
),
));
}
}
class MyHomePage extends StatefulWidget {
MyHomePage({Key key, this.title}) : super(key: key);
final String title;
@override
_textState createState() => _textState();
}
写回答
1回答
-
CrazyCodeBoy
2020-10-09
里面的黄色框外用个SizedBox约束下宽高。
032020-10-12
相似问题