美文网首页
Flutter中Container铺满问题

Flutter中Container铺满问题

作者: 前年的邂逅_Jerry | 来源:发表于2023-03-01 09:55 被阅读0次
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text("Container"),
      ),
      body: Container(
        width: 200,
        height: 200,
        color: Colors.red,
        child: Container(
          width: 100,
          height: 100,
          color: Colors.blue,
        ),
      ),
    );
  }
Screenshot 2023-03-02 at 09.42.00.png

解决办法:设置第一个Container的alignment即可

相关文章

网友评论

      本文标题:Flutter中Container铺满问题

      本文链接:https://www.haomeiwen.com/subject/acvrldtx.html