Explorar el Código

Merge pull request #449 from devasx666/update_pading_shape

fix: fixed padding in shape
flutter-beta
Julian Steenbakker hace 4 años
committed by GitHub
padre
commit
b0ba1baf37
No se encontró ninguna clave conocida en la base de datos para esta firma ID de clave GPG: 4AEE18F83AFDEB23
Se han modificado 1 ficheros con 5 adiciones y 3 borrados
  1. +5
    -3
      lib/src/qr_code_scanner.dart

+ 5
- 3
lib/src/qr_code_scanner.dart Ver fichero

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


Cargando…
Cancelar
Guardar