瀏覽代碼
Merge pull request #449 from devasx666/update_pading_shape
fix: fixed padding in shape
flutter-beta
Julian Steenbakker
4 年之前
committed by
GitHub
沒有發現已知的金鑰在資料庫的簽署中
GPG Key ID: 4AEE18F83AFDEB23
共有
1 個文件被更改,包括
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!, |
|
|
|
), |
|
|
|
), |
|
|
|
) |
|
|
|
], |
|
|
|
|