如何在不使用 Flutter 中的 SafeArea 的情况下检查设备是否有缺口?

NøB*_*Mac 6 android draggable ios flutter

我正在设计一个视频通话屏幕,我必须在孔屏幕之间管理 selfViewContainer。

在此输入图像描述

在此屏幕上,我已经管理了水平对齐的大部分部分,但对于垂直对齐,它在带有凹口的设备中无法正常工作。

我想在拖动时从顶部起最小填充50

这是可拖动的橙色容器的代码

Widget _selfView() {

    return Positioned(
      top: _selfViewTop,
      left: _selfViewLeft,
      child: Draggable(
        feedback: _draggableView(),
        childWhenDragging: Container(),
        child: _draggableView(),
        onDragEnd: (dragDetail) {
          var screenWidth = AspectSize.getScreenWidth(context: context);
          var screenHeight = AspectSize.getScreenHeight(context: context);

          _selfViewLeft = dragDetail.offset.dx;
          _selfViewTop = dragDetail.offset.dy;

          if (_selfViewLeft < (screenWidth / 2)) {
            _selfViewLeft = 16.0;
          } else if (_selfViewLeft > (screenWidth / 2)) {
            _selfViewLeft = (screenWidth) - (_selfViewWidth + 16);
          }

          if (_selfViewLeft < 1.0) {
            _selfViewLeft = 16.0;
          } else if ((_selfViewLeft + _selfViewWidth) > screenWidth) {
            _selfViewLeft = (screenWidth) - (_selfViewWidth + 16);
          }
          if (_selfViewTop < 1.0) {
            _selfViewTop = 50;
          } else if ((_selfViewTop + _selfViewHeight) > screenHeight) {
            _selfViewTop = (screenHeight) - (_selfViewWidth + 50);
          }

          setState(() {});
        },
      ),
    );
  }
Run Code Online (Sandbox Code Playgroud)

对于我使用的这个 UI,用于管理容器的Stack小部件,橙色容器用于显示呼叫者的图片,蓝色容器将显示另一个人的图片。

请给我一些解决方案。

谢谢。

aus*_*tin 5

您可以使用 MediaQuery.of(context).viewPadding 并检查填充是否大于零,然后您将需要一个安全区域,因为有一个凹口。

处理缺口行为的最佳方法是使用flutter_device_type包。

上述包中的以下代码可以确定缺口:

if( Device.get().hasNotch ){
//Do some notch business
 }
Run Code Online (Sandbox Code Playgroud)

谢谢。