소스 검색

fix: fixed padding in shape

flutter-beta
Stepan Bezhuk 4 년 전
부모
커밋
96298c83ba
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!,
),
),
)
],


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