minor UI fix [skip ci]

This commit is contained in:
OmarHatem 2025-05-29 05:41:31 +03:00
parent 9a426ee5d4
commit 1fa1181c82

View file

@ -51,18 +51,23 @@ class TransactionRow extends StatelessWidget {
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: <Widget>[
Row(
Expanded(
child: Row(
children: [
Text(
Flexible(
child: Text(
title,
style: Theme.of(context).textTheme.bodyLarge?.copyWith(
fontWeight: FontWeight.w600,
overflow: TextOverflow.fade,
),
),
),
...tags
.map((tag) => Row(children: [SizedBox(width: 8), TxTag(tag: tag)])),
],
),
),
Text(
formattedAmount,
style: Theme.of(context).textTheme.bodyLarge?.copyWith(