Fixed background color for qr image on receive screen for dark theme.
M committed
Jun 7, 2021 at 11:15 UTC
ad4022ac10612dd9a8d5f37d78dc211b9638df50
1 file changed
+1
-1
lib/src/screens/receive/widgets/qr_widget.dart
+1
-1
@@ -57,7 +57,7 @@ class QRWidget extends StatelessWidget {
57
),
58
child: QrImage(
59
data: addressListViewModel.uri.toString(),
60
- backgroundColor: isBright ? Colors.black : Colors.white,
60
+ backgroundColor: isBright ? Colors.black : Colors.transparent,
61
foregroundColor: Theme.of(context).accentTextTheme.
62
display3.backgroundColor,
63
),