尝试在_buildImageBoxes()函数中使用扩展而不是容器
Widget _buildImageBoxes() { return Column( children: <Widget>[ Expanded( child: Image.network("https://picsum.photos/500/500/?random"), ), Container( padding: EdgeInsets.all(10), child: Text("Text"), ) ], ); }


