mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-09 12:29:31 +00:00
CWA-170 | changed transaction date format and applied the same format to trade
This commit is contained in:
parent
13618c6939
commit
060c35ce04
1 changed files with 2 additions and 2 deletions
|
@ -112,7 +112,7 @@ class DashboardPageBody extends StatefulWidget {
|
||||||
}
|
}
|
||||||
|
|
||||||
class DashboardPageBodyState extends State<DashboardPageBody> {
|
class DashboardPageBodyState extends State<DashboardPageBody> {
|
||||||
static final transactionDateFormat = DateFormat("MMM d, yyyy HH:mm");
|
static final transactionDateFormat = DateFormat("MMMM d, yyyy HH:mm");
|
||||||
|
|
||||||
final _connectionStatusObserverKey = GlobalKey();
|
final _connectionStatusObserverKey = GlobalKey();
|
||||||
final _balanceObserverKey = GlobalKey();
|
final _balanceObserverKey = GlobalKey();
|
||||||
|
@ -566,7 +566,7 @@ class DashboardPageBodyState extends State<DashboardPageBody> {
|
||||||
from: trade.from,
|
from: trade.from,
|
||||||
to: trade.to,
|
to: trade.to,
|
||||||
createdAtFormattedDate:
|
createdAtFormattedDate:
|
||||||
DateFormat("dd.MM.yyyy, H:m").format(trade.createdAt),
|
transactionDateFormat.format(trade.createdAt),
|
||||||
formattedAmount: formattedAmount);
|
formattedAmount: formattedAmount);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue