0

我想禁用向下拖动以关闭 showModalBottomSheet

我已经尝试过使用enableDrag:false,

当我使用时enableDrag:false,向我显示以下错误

在此处输入图像描述

下面是我的代码

 modal(BuildContext context) {
    showModalBottomSheet(
        context: context,
        enableDrag:false,
        isDismissible: false,
        backgroundColor: Colors.transparent,
        builder: (context) {
          return Container(
            width: MediaQuery.of(context).size.width,
            child: Stack(
              alignment: Alignment.topCenter,
              children: <Widget>[
                Container(
                  width: MediaQuery.of(context).size.width,
                  padding: EdgeInsets.only(top: 30),
                  child: Stack(
                    alignment: Alignment.topCenter,
                    children: <Widget>[
                      ClipPath(
                        clipper: OvalTopBorderClipper(),
                        child: Container(
                          width: MediaQuery.of(context).size.width,
                          padding: EdgeInsets.only(top: 80),
                          color: Colors.white,
                          height: 440,
                          child: Text("This is a modal bottom sheet !"),
                        ),
                      ),
                    ],
                  ),
                ),
                Positioned(
                  top: 5,
                  child: Container(
                    width: 50.0,
                    height: 53.0,
                    child: Center(
                      child: Text(
                        "K",
                        style: TextStyle(
                            color: AppColors.textColor, fontSize: 20.0),
                      ),
                    ),
                    padding:
                        EdgeInsets.symmetric(horizontal: 10.0, vertical: 10.0),
                    decoration: BoxDecoration(
                        border:
                            Border.all(color: AppColors.textColor, width: 2)),
                  ),
                ),
              ],
            ),
          );
        });
  }

我已经检查了这个帖子

如果需要更多信息,请告诉我。提前致谢。您的努力将不胜感激。

4

2 回答 2

4

enableDrag中不可用showModalBottomSheet。我认为它从未在稳定的频道中可用。根据当时链接的评论,它在主频道中可用。但是该链接的第二个答案效果很好

builder: (context) => GestureDetector(
                    onVerticalDragDown: (_) {},
                    child: ...,

showModalBottomSheet. 您可以随时点击showModalBottomSheet并自定义它..根据文档

BottomSheet,它成为由作为构建器参数传递给 showModalBottomSheet 的函数返回的小部件的父级。

BottomSheetenableDrag参数。

于 2020-03-26T07:06:05.063 回答
2

截至 2020 年 5 月 6 日,flutter v1.17.1 enableDrag 可在 showModalBottomSheet 上使用

于 2020-05-14T14:27:54.553 回答