fix UI with new design CW-138

Serhii committed Nov 13, 2022 at 21:18 UTC 74cbb6f0018c2b27d7f2fb42ed9b371f795af290
1 file changed -12
lib/view_model/trade_details_view_model.dart
-12
@@ -142,17 +142,5 @@ abstract class TradeDetailsViewModelBase with Store {
142 items.add(TrackTradeListItem(
143 title: 'Track', value: buildURL, onTap: () => launch(buildURL)));
144 }
145 -
146 - if (trade.createdAt != null) {
147 - items.add(StandartListItem(
148 - title: S.current.trade_details_created_at,
149 - value: trade.createdAt != null ? dateFormat.format(trade.createdAt!).toString() : ''));
150 - }
151 -
152 - if (trade.from != null && trade.to != null) {
153 - items.add(StandartListItem(
154 - title: S.current.trade_details_pair,
155 - value: '${trade.from.toString()} → ${trade.to.toString()}'));
156 - }
145 }
146 }