CAKE-282 | made QR code border a little bold in the exchange_trade_page.dart and qr_widget.dart
OleksandrSobol committed
Feb 22, 2021 at 20:10 UTC
d024972345e6fa06a8cbaeb8cc654cbc6debf7e2
2 files changed
+2
lib/src/screens/exchange_trade/exchange_trade_page.dart
+1
@@ -148,6 +148,7 @@ class ExchangeTradeState extends State<ExchangeTradeForm> {
148
padding: EdgeInsets.all(5),
149
decoration: BoxDecoration(
150
border: Border.all(
151
+ width: 3,
152
color: Theme.of(context)
153
.accentTextTheme
154
.subtitle
lib/src/screens/receive/widgets/qr_widget.dart
+1
@@ -48,6 +48,7 @@ class QRWidget extends StatelessWidget {
48
padding: EdgeInsets.all(5),
49
decoration: BoxDecoration(
50
border: Border.all(
51
+ width: 3,
52
color: Theme.of(context).accentTextTheme.
53
display3.backgroundColor
54
)