minor UI fix [skip ci]
OmarHatem committed
May 29, 2025 at 05:41 UTC
1fa1181c827348adbc562db3abb73d728bcf8bb8
1 file changed
+16
-11
lib/src/screens/dashboard/widgets/transaction_raw.dart
+16
-11
@@ -51,17 +51,22 @@ class TransactionRow extends StatelessWidget {
51
Row(
52
mainAxisAlignment: MainAxisAlignment.spaceBetween,
53
children: <Widget>[
54
- Row(
55
- children: [
56
- Text(
57
- title,
58
- style: Theme.of(context).textTheme.bodyLarge?.copyWith(
59
- fontWeight: FontWeight.w600,
60
- ),
61
- ),
62
- ...tags
63
- .map((tag) => Row(children: [SizedBox(width: 8), TxTag(tag: tag)])),
64
- ],
54
+ Expanded(
55
+ child: Row(
56
+ children: [
57
+ Flexible(
58
+ child: Text(
59
+ title,
60
+ style: Theme.of(context).textTheme.bodyLarge?.copyWith(
61
+ fontWeight: FontWeight.w600,
62
+ overflow: TextOverflow.fade,
63
+ ),
64
+ ),
65
+ ),
66
+ ...tags
67
+ .map((tag) => Row(children: [SizedBox(width: 8), TxTag(tag: tag)])),
68
+ ],
69
+ ),
70
),
71
Text(
72
formattedAmount,