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