Fixed background color for qr image on receive screen for dark theme.

This commit is contained in:
M 2021-06-07 11:15:36 +03:00
parent 080dd5c37f
commit ad4022ac10

View file

@ -57,7 +57,7 @@ class QRWidget extends StatelessWidget {
),
child: QrImage(
data: addressListViewModel.uri.toString(),
backgroundColor: isBright ? Colors.black : Colors.white,
backgroundColor: isBright ? Colors.black : Colors.transparent,
foregroundColor: Theme.of(context).accentTextTheme.
display3.backgroundColor,
),