Skip to content
Snippets Groups Projects
Commit 4bc24cb9 authored by vjrj's avatar vjrj
Browse files

More spach in tx comments. Refactor

parent 398e1307
No related branches found
No related tags found
No related merge requests found
......@@ -253,7 +253,7 @@ class TransactionListItem extends StatelessWidget {
),
),
),
separator(),
lineSeparator(),
WidgetSpan(
child: Text(
humanizeContact(
......@@ -264,7 +264,7 @@ class TransactionListItem extends StatelessWidget {
),
),
),
separator(),
lineSeparator(),
WidgetSpan(
child: Text(
tr('transaction_to').toLowerCase(),
......@@ -276,7 +276,7 @@ class TransactionListItem extends StatelessWidget {
),
),
),
separator(),
lineSeparator(),
WidgetSpan(
child: Text(
humanizeContacts(
......@@ -299,7 +299,7 @@ class TransactionListItem extends StatelessWidget {
subtitle: transaction.comment == ''
? null
: Padding(
padding: const EdgeInsets.fromLTRB(8, 0, 0, 5),
padding: const EdgeInsets.fromLTRB(8, 6, 0, 5),
child: Text(
inDevelopment
? '${transaction.comment}$debugText'
......@@ -356,7 +356,7 @@ class TransactionListItem extends StatelessWidget {
))));
}
WidgetSpan separator() {
WidgetSpan lineSeparator() {
return const WidgetSpan(
child: SizedBox(width: 5.0),
);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment