소스 검색

Merge pull request #449 from devasx666/update_pading_shape

fix: fixed padding in shape
flutter-beta
Julian Steenbakker 4 년 전
committed by GitHub
부모
커밋
b0ba1baf37
No known key found for this signature in database GPG 키 ID: 4AEE18F83AFDEB23
1개의 변경된 파일5개의 추가작업 그리고 3개의 파일을 삭제
  1. +5
    -3
      lib/src/qr_code_scanner.dart

+ 5
- 3
lib/src/qr_code_scanner.dart 파일 보기

@@ -101,10 +101,12 @@ class _QRViewState extends State<QRView> {
return Stack(
children: [
_getPlatformQrView(),
Container(
Padding(
padding: widget.overlayMargin,
decoration: ShapeDecoration(
shape: widget.overlay!,
child: Container(
decoration: ShapeDecoration(
shape: widget.overlay!,
),
),
)
],


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