mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-06-28 12:29:51 +00:00
minor UI fix [skip ci]
This commit is contained in:
parent
9a426ee5d4
commit
1fa1181c82
1 changed files with 16 additions and 11 deletions
|
@ -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(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue