mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-06-28 20:39:51 +00:00
CAKE-344 | fixed MoonPay icon color on support and dashboard pages
This commit is contained in:
parent
dbf4897ac8
commit
5f02a7ddf5
9 changed files with 23 additions and 28 deletions
|
@ -19,6 +19,9 @@ class SupportPage extends BasePage {
|
|||
|
||||
@override
|
||||
Widget body(BuildContext context) {
|
||||
final iconColor =
|
||||
Theme.of(context).accentTextTheme.display4.backgroundColor;
|
||||
|
||||
return SectionStandardList(
|
||||
sectionCount: 1,
|
||||
itemCounter: (int _) => supportViewModel.items.length,
|
||||
|
@ -34,7 +37,7 @@ class SupportPage extends BasePage {
|
|||
return SettingsLinkProviderCell(
|
||||
title: item.title,
|
||||
icon: item.icon,
|
||||
iconColor: item.iconColor,
|
||||
iconColor: item.hasIconColor ? iconColor : null,
|
||||
link: item.link,
|
||||
linkTitle: item.linkTitle);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue