Dashboard
This commit is contained in:
parent
c2cd649c38
commit
1a4c069bb8
|
|
@ -50,7 +50,9 @@ class DashboardPanel extends StatelessWidget {
|
||||||
ListTile(
|
ListTile(
|
||||||
leading: Icon(this.icon),
|
leading: Icon(this.icon),
|
||||||
title: Text(this.title),
|
title: Text(this.title),
|
||||||
trailing: Text(this.amount.toStringAsFixed(this.isMoney ? 2 : 0)),
|
trailing: Text(this.isMoney ?
|
||||||
|
"\$" + this.amount.toStringAsFixed(2) :
|
||||||
|
this.amount.toString()),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue