mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-02-02 19:26:27 +00:00
Merge pull request #27 from cake-tech/CWA-170-fix-date-format-bug-for-exchange
CWA-170 | changed transaction date format and applied the same format…
This commit is contained in:
commit
f5ac398f58
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