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