容器大小内的容器

时间:2019-06-30 15:56:45

标签: flutter-layout

我在其中的另一个容器中创建了一个容器。子容器应该小于父容器,但这不起作用。我只看到子容器的边框。

 @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: Container(
        height: MediaQuery.of(context).size.height,
        width: MediaQuery.of(context).size.width,
        decoration: BoxDecoration(color: Colors.green),
        child: Container(
            height: 200,
            width: 200,
            decoration: BoxDecoration(color: Colors.red),
          child: Card(
            child: Text('fffff'),
          ),
        ),
      ),
    );
  }

1 个答案:

答案 0 :(得分:0)

您可以像这样使用StackPositioned小部件:

Container(
          width: 200,
          height: 200,
          decoration: BoxDecoration(
            color: Colors.blue,
          ),
          child: Stack(
            children: <Widget>[
              Positioned(
                left: 20.0,
                top: 20.0,
                child: Container(
                  height: 100,
                  width: 100,
                  decoration: BoxDecoration(color: Colors.green),
                ),
              )
            ],
          ),
        ),