make the block explorer link a more prominent color (#3061)
malik1004x committed
Mar 13, 2026 at 01:55 UTC
c5890ef0bc2d518a6ddd27579828bbd5948a550c
1 file changed
+5
-1
lib/src/screens/transaction_details/transaction_details_page.dart
+5
-1
@@ -74,7 +74,11 @@ class TransactionDetailsPage extends BasePage {
74
return GestureDetector(
75
key: item.key,
76
onTap: item.onTap,
77
- child: ListRow(title: '${item.title}:', value: item.value),
77
+ child: ListRow(
78
+ title: '${item.title}:',
79
+ value: item.value,
80
+ mainTextColor: Theme.of(context).colorScheme.primary,
81
+ ),
82
);
83
}
84