CWA-201 | added separator between action buttons in alert dialog; fixed overflow bugs for japanese, korean and chinese languages in dashboard page

wownero
Oleksandr Sobol 4 years ago
parent df64e7b5e1
commit 4b34ca3111

@ -98,7 +98,7 @@ class TradeHistoryPanelState extends State<TradeHistoryPanel> {
}
if (item is TransactionListItem) {
freeSpaceHeight -= 58;
freeSpaceHeight -= 62;
final transaction = item.transaction;
final savedDisplayMode = settingsStore.balanceDisplayMode;
final formattedAmount =
@ -123,7 +123,7 @@ class TradeHistoryPanelState extends State<TradeHistoryPanel> {
}
if (item is TradeListItem) {
freeSpaceHeight -= 58;
freeSpaceHeight -= 62;
final trade = item.trade;
final savedDisplayMode = settingsStore.balanceDisplayMode;
final formattedAmount = trade.amount != null

@ -26,7 +26,7 @@ class TradeRow extends StatelessWidget {
return InkWell(
onTap: onTap,
child: Container(
height: 56,
height: 60,
decoration: BoxDecoration(
color: PaletteDark.historyPanel,
border: Border.all(

@ -24,7 +24,7 @@ class TransactionRow extends StatelessWidget {
return InkWell(
onTap: onTap,
child: Container(
height: 56,
height: 60,
decoration: BoxDecoration(
color: PaletteDark.historyPanel,
border: Border.all(

@ -334,7 +334,7 @@ class WalletCardState extends State<WalletCard> {
children: <Widget>[
Expanded(
child: Container(
height: 84,
height: 90,
child: Column(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
crossAxisAlignment: CrossAxisAlignment.start,
@ -379,8 +379,8 @@ class WalletCardState extends State<WalletCard> {
),
SizedBox(width: 10),
Container(
width: 84,
height: 84,
width: 90,
height: 90,
child: QrImage(
data: walletStore.subaddress.address,
backgroundColor: Colors.transparent,

@ -75,6 +75,11 @@ class BaseAlertDialog extends StatelessWidget {
),
)
),
Container(
height: 52,
width: 1,
color: Colors.grey.withOpacity(0.2),
),
Flexible(
child: Container(
padding: EdgeInsets.only(left: 12, right: 12),

Loading…
Cancel
Save