Skip to content

Commit

Permalink
Merge pull request #449 from devasx666/update_pading_shape
Browse files Browse the repository at this point in the history
fix: fixed padding in shape
  • Loading branch information
juliansteenbakker authored Nov 1, 2021
2 parents 548b667 + 96298c8 commit b0ba1ba
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions lib/src/qr_code_scanner.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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!,
),
),
)
],
Expand Down

0 comments on commit b0ba1ba

Please sign in to comment.