Parcourir la source

Merge pull request #449 from devasx666/update_pading_shape

fix: fixed padding in shape
flutter-beta
Julian Steenbakker il y a 4 ans
committed by GitHub
Parent
révision
b0ba1baf37
Aucune clé connue n'a été trouvée dans la base pour cette signature ID de la clé GPG: 4AEE18F83AFDEB23
1 fichiers modifiés avec 5 ajouts et 3 suppressions
  1. +5
    -3
      lib/src/qr_code_scanner.dart

+ 5
- 3
lib/src/qr_code_scanner.dart Voir le fichier

@@ -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!,
),
),
)
],


Chargement…
Annuler
Enregistrer