CAKE-217 | merged 4.1.0 branch into current and resolved problems

wownero
OleksandrSobol 4 years ago
parent 9a2794fc7c
commit dcb892b24c

@ -44,14 +44,16 @@ class TradeRow extends StatelessWidget {
style: TextStyle( style: TextStyle(
fontSize: 16, fontSize: 16,
fontWeight: FontWeight.w500, fontWeight: FontWeight.w500,
color: Colors.white color: Theme.of(context).accentTextTheme.
display3.backgroundColor
)), )),
formattedAmount != null formattedAmount != null
? Text(formattedAmount + ' ' + amountCrypto, ? Text(formattedAmount + ' ' + amountCrypto,
style: TextStyle( style: TextStyle(
fontSize: 16, fontSize: 16,
fontWeight: FontWeight.w500, fontWeight: FontWeight.w500,
color: Colors.white color: Theme.of(context).accentTextTheme.
display3.backgroundColor
)) ))
: Container() : Container()
]), ]),

@ -57,12 +57,14 @@ class TransactionRow extends StatelessWidget {
style: TextStyle( style: TextStyle(
fontSize: 16, fontSize: 16,
fontWeight: FontWeight.w500, fontWeight: FontWeight.w500,
color: Colors.white)), color: Theme.of(context).accentTextTheme.
display3.backgroundColor)),
Text(formattedAmount, Text(formattedAmount,
style: TextStyle( style: TextStyle(
fontSize: 16, fontSize: 16,
fontWeight: FontWeight.w500, fontWeight: FontWeight.w500,
color: Colors.white)) color: Theme.of(context).accentTextTheme.
display3.backgroundColor))
]), ]),
SizedBox(height: 5), SizedBox(height: 5),
Row( Row(

Loading…
Cancel
Save