add location on card

This commit is contained in:
JMARyA 2024-09-23 08:42:58 +02:00
parent a1ac1ff893
commit f30ce56140
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263
2 changed files with 8 additions and 0 deletions

View file

@ -97,6 +97,12 @@ class TransactionCard extends StatelessWidget {
const SizedBox(height: 8),
IconText(Icons.store, t.origin!, color: Colors.blue)
],
if (t.location != null) ...[
const SizedBox(
height: 8,
),
IconText(Icons.location_city, t.location!)
]
],
),
),