Merge pull request #624 from cake-tech/fix-trade-details-screen-UI

fix UI on trade details screen with new design CW-138
This commit is contained in:
Omar Hatem 2023-01-03 16:04:37 +02:00 committed by GitHub
commit a0e98e6d90
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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()}'));
}
}
}