我有设计(如图所示)并且我正在使用 showModalBottomSheet 但是当我设置宽度时,它不会改变并保持屏幕宽度,所以我有几个问题:
1-如何设置 showModalBottomSheet 的宽度
2-对于这种底部菜单,是否有 showModalBottomSheet 的替代方案
3-如何模糊照片中显示的背景
showModalBottomSheet<void>(
context: context,
builder: (BuildContext context) {
return Container(
height: SizeConfig.screenHeight * 0.6,
width: 30,
color: Colors.red,
child: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
mainAxisSize: MainAxisSize.min,
children: <Widget>[
const Text('Modal BottomSheet'),
ElevatedButton(
child: const Text('Close BottomSheet'),
onPressed: () => Navigator.pop(context),
)
],
),
),
);
},
);
在 showModalBottomSheet 中使用约束属性。
showModalBottomSheet(
context: context,
constraints: BoxConstraints(
maxWidth: 600,
),
builder: ...
),
我通过将容器放入容器中解决了这个问题。
父容器具有透明颜色,而子容器具有纯色和填充。
但我仍然不知道如何模糊背景。
这是代码:
showModalBottomSheet(
context: context,
backgroundColor: Colors.transparent,
builder: (BuildContext bc) {
return Container(
height: SizeConfig.screenHeight * 0.6,
child: Padding(
padding: EdgeInsets.only(left: SizeConfig.screenWidth * 0.4),
child: Container(
child: SingleChildScrollView(
child:
Padding(
padding: EdgeInsets.only(
top: SizeConfig.blockSizeVertical * 1.5),
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.start,
mainAxisSize: MainAxisSize.min,
children: <Widget>[
],
),
),
),
),
),
);
});
如果你想自定义高度和宽度,你可以这样做,这段代码会将它定位在屏幕右侧,宽度为 50%,高度为 75%。一些答案可以做到这一点,但我也在这里补充说,如果用户单击工作表的左侧,它会弹出,因此它会像您的设计一样完美地工作。
showModalBottomSheet(
backgroundColor: Colors.transparent,
isScrollControlled: true,
context: context,
builder: (context) => GestureDetector(
onTapDown: (tapDetails) {
//closing bottom sheet on tapping on the left
if (tapDetails.globalPosition.dx <
MediaQuery.of(context).size.width * 0.5) {
Navigator.pop(context);
}
},
child: Container(
height: MediaQuery.of(context).size.height * 0.75,
padding: EdgeInsets.only(
left: MediaQuery.of(context).size.width * 0.5),
color: Colors.transparent,
child: Container(
decoration: BoxDecoration(
color: Colors.white,
borderRadius: BorderRadius.only(
topLeft: Radius.circular(20.0),
topRight: Radius.circular(20.0),
),
),
),
),
),
);