如何在多个项目之间分配空间

Man*_*rla 3 dart flutter flutter-layout

我试图添加一个覆盖屏幕前20%的图像,另外80%应该是一个网格.图像需要在身体中,而不是在Appbar上.我制作了网格卡,然后我尝试将图像和网格放在一列中.实施如下.

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        primary: true,
        appBar: AppBar(
        elevation: 4.0,
        backgroundColor: Color(0xfff8f8f8),
        title: Center(child: titleLogo,),
        ),
  //------------ PROBLEM BELOW ----------------
        body: new Column(
          children: <Widget>[
            titleLogo,   //Image object
            TheGridView().build()  //Returns a GridView object
            ],
      ),
  ),
);
Run Code Online (Sandbox Code Playgroud)

}

我收到以下错误

I/flutter (21751): The following assertion was thrown during performResize():
I/flutter (21751): Vertical viewport was given unbounded height.
I/flutter (21751): Viewports expand in the scrolling direction to fill their container.In this case, a vertical
I/flutter (21751): viewport was given an unlimited amount of vertical space in which to expand. This situation
I/flutter (21751): typically happens when a scrollable widget is nested inside another scrollable widget.
I/flutter (21751): If this widget is always nested in a scrollable widget there is no need to use a viewport because
I/flutter (21751): there will always be enough vertical space for the children. In this case, consider using a Column
I/flutter (21751): instead. Otherwise, consider using the "shrinkWrap" property (or a ShrinkWrappingViewport) to size
I/flutter (21751): the height of the viewport to the sum of the heights of its children.
Run Code Online (Sandbox Code Playgroud)

任何建议都非常感谢.先感谢您.

Rao*_*che 9

要在多个项目之间分配空间,您应该使用Expanded小部件,如下所示:

return new Column(
  children: <Widget>[
    new Expanded(
      flex: 2,
      child: new Container(
        color: Colors.red,
      ),
    ),
    new Expanded(
      flex: 8,
      child: new Container(//use your Gridview instead 
        color: Colors.green,
      )
    )
  ],

); 
Run Code Online (Sandbox Code Playgroud)

在此输入图像描述