Kaynağa Gözat
Merge pull request #449 from devasx666/update_pading_shape
fix: fixed padding in shape
flutter-beta
Julian Steenbakker
4 yıl önce
committed by
GitHub
ebeveyn
işleme
b0ba1baf37
Veri tabanında bu imza için bilinen anahtar bulunamadı
GPG Anahtar Kimliği: 4AEE18F83AFDEB23
1 değiştirilmiş dosya ile
5 ekleme ve
3 silme
-
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!, |
|
|
|
), |
|
|
|
), |
|
|
|
) |
|
|
|
], |
|
|
|
|