fix UI with new design CW-138

This commit is contained in:
Serhii 2022-11-13 21:18:01 +02:00
parent 1efced7607
commit 74cbb6f001

View file

@ -142,17 +142,5 @@ abstract class TradeDetailsViewModelBase with Store {
items.add(TrackTradeListItem(
title: 'Track', value: buildURL, onTap: () => launch(buildURL)));
}
if (trade.createdAt != null) {
items.add(StandartListItem(
title: S.current.trade_details_created_at,
value: trade.createdAt != null ? dateFormat.format(trade.createdAt!).toString() : ''));
}
if (trade.from != null && trade.to != null) {
items.add(StandartListItem(
title: S.current.trade_details_pair,
value: '${trade.from.toString()}${trade.to.toString()}'));
}
}
}