首页 > 解决方案 > Move showModalBottomSheet to the top

问题描述

Is there a way to move showModalBottomSheet 75pixels to the top so it doesnt block my bottom menu? I tried to give my Container padding but it doesn't work.

enter image description here

标签: flutter

解决方案


我编辑了 bottom_sheet.dart 文件并在这部分代码中添加了 -75.0

      @override
  Offset getPositionForChild(Size size, Size childSize) {
    return Offset(0.0, size.height - childSize.height * progress - 75.0);
  }

这成功了,但是,动画仍然从底部开始。不确定我是否喜欢。


推荐阅读