소스 검색

Dartfmt

flutter-beta
Julian Steenbakker 5 년 전
부모
커밋
742568c50a
No known key found for this signature in database GPG 키 ID: 16E437C7A3D94250
1개의 변경된 파일2개의 추가작업 그리고 4개의 파일을 삭제
  1. +2
    -4
      lib/src/qr_scanner_overlay_shape.dart

+ 2
- 4
lib/src/qr_scanner_overlay_shape.dart 파일 보기

@@ -11,7 +11,7 @@ class QrScannerOverlayShape extends ShapeBorder {
this.borderLength = 40,
this.cutOutSize = 250,
this.cutOutBottomOffset = 0,
}) : assert( borderLength <= cutOutSize / 2 + borderWidth * 2,
}) : assert(borderLength <= cutOutSize / 2 + borderWidth * 2,
"Border can't be larger than ${cutOutSize / 2 + borderWidth * 2}");

final Color borderColor;
@@ -65,9 +65,7 @@ class QrScannerOverlayShape extends ShapeBorder {
final _borderLength = borderLength > cutOutSize / 2 + borderWidth * 2
? borderWidthSize / 2
: borderLength;
final _cutOutSize = cutOutSize < width
? cutOutSize
: width - borderOffset;
final _cutOutSize = cutOutSize < width ? cutOutSize : width - borderOffset;

final backgroundPaint = Paint()
..color = overlayColor


불러오는 중...
취소
저장