mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-06-28 20:39: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,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,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue