Skip to content

Commit

Permalink
fix: icon and address colors
Browse files Browse the repository at this point in the history
  • Loading branch information
parodyBit committed Oct 30, 2024
1 parent a5ad2bb commit ebdee8a
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions lib/widgets/transaction_details.dart
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,12 @@ class TransactionDetails extends StatelessWidget {
.cropAddress(
12),
style: extendedTheme
.monoRegularText,
.monoRegularText
?.copyWith(
color: theme
.textTheme
.bodyMedium
?.color),
),
SizedBox(
width: 8,
Expand All @@ -330,7 +335,7 @@ class TransactionDetails extends StatelessWidget {
crossAxisAlignment: CrossAxisAlignment.start,
mainAxisAlignment: MainAxisAlignment.end,
children: [
Icon(FontAwesomeIcons.circleArrowDown),
Icon(FontAwesomeIcons.circleArrowDown, color: theme.textTheme.bodyMedium?.color),
SizedBox(width: 96),
]),
SizedBox(
Expand All @@ -357,7 +362,10 @@ class TransactionDetails extends StatelessWidget {
transactionUtils
.getRecipientAddress()
.cropAddress(12),
style: extendedTheme.monoRegularText,
style: extendedTheme.monoRegularText
?.copyWith(
color: theme
.textTheme.bodyMedium?.color),
),
SizedBox(
width: 8,
Expand Down

0 comments on commit ebdee8a

Please sign in to comment.