imageScreenGaps property

EdgeInsets imageScreenGaps

Implementation

EdgeInsets get imageScreenGaps => EdgeInsets.only(
      top: (screen.height -
              screenPadding.top -
              screenPadding.bottom -
              decodedImageSize.height -
              allToolbarHeight) /
          2,
      left: (screen.width -
              screenPadding.left -
              screenPadding.right -
              decodedImageSize.width) /
          2,
    );