Skip to content

Instantly share code, notes, and snippets.

@enzoftware
Created July 16, 2021 02:28
Show Gist options
  • Save enzoftware/988ccf02aeef795be4d41110bf1f696d to your computer and use it in GitHub Desktop.
Save enzoftware/988ccf02aeef795be4d41110bf1f696d to your computer and use it in GitHub Desktop.
return Semantics(
label: 'Transaction $type of $amount on $date',
// 1
child: ExcludeSemantics(
// 2
child: ListTile(
leading: TransactionIndicator(transactionType: transaction.type),
title: Text(transaction.description),
subtitle: Text(transaction.date),
trailing: Text(transaction.amount.toString()),
),
),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment