开发侧滑搜索菜单,Drawer 内容代码如下
ConstrainedBox( constraints: BoxConstraints.expand(), child: Stack( fit: StackFit.expand, children: <Widget>[ ListView( children:[ _buildHeader(), _buildTime(), MyWidgets.separator(height: 1,bgColor: StyleColors.bg_grey), _buildTag(), MyWidgets.separator(height: 1,bgColor: StyleColors.bg_grey), _buildTag(), MyWidgets.separator(height: 1,bgColor: StyleColors.bg_grey), _buildTag(), MyWidgets.separator(height: 1,bgColor: StyleColors.bg_grey), _buildTag(), ], ), Positioned( bottom: 0, child: _buildBtn(), ), ], ), )
界面如下
_buildBtn 内容为
Container( height: 50, // width: double.infinity, decoration: BoxDecoration( color: StyleColors.main_color ), child: Text('bottom'), );
想bottom铺满底部宽带
但是设置 width: double.infinity, 报错:BoxConstraints forces an infinite width.
可以将 Positioned 替换为 Align
Align(child: _buildBtn(),alignment: Alignment.bottomCenter,)
Container 宽度设置为 width: double.infinity,
效果如下