diff --git a/lib/buy/get_buy_provider_icon.dart b/lib/buy/get_buy_provider_icon.dart index f284b6f04..672dfdd9d 100644 --- a/lib/buy/get_buy_provider_icon.dart +++ b/lib/buy/get_buy_provider_icon.dart @@ -2,23 +2,20 @@ import 'package:flutter/material.dart'; import 'package:cake_wallet/buy/buy_provider_description.dart'; Image getBuyProviderIcon(BuyProviderDescription providerDescription, - {bool isWhiteIconColor = false}) { + {Color iconColor = Colors.black}) { final _wyreIcon = Image.asset('assets/images/wyre-icon.png', width: 36, height: 36); - final _moonPayWhiteIcon = - Image.asset('assets/images/moonpay-icon.png', color: Colors.white, + final _moonPayIcon = + Image.asset('assets/images/moonpay-icon.png', color: iconColor, width: 36, height: 34); - final _moonPayBlackIcon = - Image.asset('assets/images/moonpay-icon.png', color: Colors.black, - width: 36, height: 34); if (providerDescription != null) { switch (providerDescription) { case BuyProviderDescription.wyre: return _wyreIcon; case BuyProviderDescription.moonPay: - return isWhiteIconColor ? _moonPayWhiteIcon : _moonPayBlackIcon; + return _moonPayIcon; default: return null; } diff --git a/lib/src/screens/buy/widgets/buy_list_item.dart b/lib/src/screens/buy/widgets/buy_list_item.dart index 97eb88ec6..26d173eb4 100644 --- a/lib/src/screens/buy/widgets/buy_list_item.dart +++ b/lib/src/screens/buy/widgets/buy_list_item.dart @@ -27,9 +27,10 @@ class BuyListItem extends StatelessWidget { @override Widget build(BuildContext context) { final isSelected = selectedProvider?.description == provider.description; + final iconColor = isSelected ? Colors.white : Colors.black; final providerIcon = getBuyProviderIcon(provider.description, - isWhiteIconColor: isSelected); + iconColor: iconColor); final backgroundColor = isSelected ? Palette.greyBlueCraiola diff --git a/lib/src/screens/dashboard/widgets/order_row.dart b/lib/src/screens/dashboard/widgets/order_row.dart index 9a7a61525..dea69cdd8 100644 --- a/lib/src/screens/dashboard/widgets/order_row.dart +++ b/lib/src/screens/dashboard/widgets/order_row.dart @@ -1,9 +1,6 @@ import 'package:cake_wallet/buy/buy_provider_description.dart'; import 'package:cake_wallet/buy/get_buy_provider_icon.dart'; -import 'package:cake_wallet/themes/theme_base.dart'; import 'package:flutter/material.dart'; -import 'package:cake_wallet/di.dart'; -import 'package:cake_wallet/store/settings_store.dart'; class OrderRow extends StatelessWidget { OrderRow({ @@ -22,11 +19,10 @@ class OrderRow extends StatelessWidget { @override Widget build(BuildContext context) { - final currentTheme = getIt.get().currentTheme; - final isWhiteIconColor = currentTheme.type != ThemeType.light; + final iconColor = + Theme.of(context).primaryTextTheme.display4.backgroundColor; - final providerIcon = getBuyProviderIcon(provider, - isWhiteIconColor: isWhiteIconColor); + final providerIcon = getBuyProviderIcon(provider, iconColor: iconColor); return InkWell( onTap: onTap, diff --git a/lib/src/screens/support/support_page.dart b/lib/src/screens/support/support_page.dart index 9405214c6..986317533 100644 --- a/lib/src/screens/support/support_page.dart +++ b/lib/src/screens/support/support_page.dart @@ -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); } diff --git a/lib/themes/bright_theme.dart b/lib/themes/bright_theme.dart index 39c33f8f1..73c33aba3 100644 --- a/lib/themes/bright_theme.dart +++ b/lib/themes/bright_theme.dart @@ -113,6 +113,7 @@ class BrightTheme extends ThemeBase { ), display4: TextStyle( color: Palette.darkBlueCraiola, // template title (send page) + backgroundColor: Colors.white, // icon color on order row (moonpay) decorationColor: Palette.niagara // receive amount text (exchange page) ), subtitle: TextStyle( @@ -179,6 +180,7 @@ class BrightTheme extends ThemeBase { ), display4: TextStyle( color: Palette.darkGray, // switch background (settings page) + backgroundColor: Colors.black, // icon color on support page (moonpay, github) decorationColor: Colors.white.withOpacity(0.4) // hint text (exchange page) ), body1: TextStyle( diff --git a/lib/themes/dark_theme.dart b/lib/themes/dark_theme.dart index 09fb5526f..428100eba 100644 --- a/lib/themes/dark_theme.dart +++ b/lib/themes/dark_theme.dart @@ -112,6 +112,7 @@ class DarkTheme extends ThemeBase { ), display4: TextStyle( color: PaletteDark.cyanBlue, // template title (send page) + backgroundColor: Colors.white, // icon color on order row (moonpay) decorationColor: PaletteDark.darkCyanBlue // receive amount text (exchange page) ), subtitle: TextStyle( @@ -178,6 +179,7 @@ class DarkTheme extends ThemeBase { ), display4: TextStyle( color: PaletteDark.deepVioletBlue, // switch background (settings page) + backgroundColor: Colors.white, // icon color on support page (moonpay, github) decorationColor: PaletteDark.lightBlueGrey // hint text (exchange page) ), body1: TextStyle( diff --git a/lib/themes/light_theme.dart b/lib/themes/light_theme.dart index 7d1486a91..fa12a90b6 100644 --- a/lib/themes/light_theme.dart +++ b/lib/themes/light_theme.dart @@ -113,6 +113,7 @@ class LightTheme extends ThemeBase { ), display4: TextStyle( color: Palette.darkBlueCraiola, // template title (send page) + backgroundColor: Colors.black, // icon color on order row (moonpay) decorationColor: Palette.niagara // receive amount text (exchange page) ), subtitle: TextStyle( @@ -178,6 +179,7 @@ class LightTheme extends ThemeBase { ), display4: TextStyle( color: Palette.darkGray, // switch background (settings page) + backgroundColor: Colors.black, // icon color on support page (moonpay, github) decorationColor: Colors.white.withOpacity(0.4) // hint text (exchange page) ), body1: TextStyle( diff --git a/lib/view_model/settings/link_list_item.dart b/lib/view_model/settings/link_list_item.dart index cfcc601c1..92a01f444 100644 --- a/lib/view_model/settings/link_list_item.dart +++ b/lib/view_model/settings/link_list_item.dart @@ -8,11 +8,11 @@ class LinkListItem extends SettingsListItem { @required this.link, @required this.linkTitle, this.icon, - this.iconColor}) + this.hasIconColor = false}) : super(title); final String icon; final String link; final String linkTitle; - final Color iconColor; + final bool hasIconColor; } \ No newline at end of file diff --git a/lib/view_model/support_view_model.dart b/lib/view_model/support_view_model.dart index caa360339..9b8dbe426 100644 --- a/lib/view_model/support_view_model.dart +++ b/lib/view_model/support_view_model.dart @@ -6,9 +6,6 @@ import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; import 'package:mobx/mobx.dart'; import 'package:url_launcher/url_launcher.dart'; -import 'package:cake_wallet/di.dart'; -import 'package:cake_wallet/store/settings_store.dart'; -import 'package:cake_wallet/themes/theme_base.dart'; part 'support_view_model.g.dart'; @@ -16,11 +13,6 @@ class SupportViewModel = SupportViewModelBase with _$SupportViewModel; abstract class SupportViewModelBase with Store { SupportViewModelBase() { - final currentTheme = getIt.get().currentTheme; - final iconColor = currentTheme.type == ThemeType.dark - ? Colors.white - : Colors.black; - items = [ RegularListItem( title: S.current.faq, @@ -39,7 +31,7 @@ abstract class SupportViewModelBase with Store { LinkListItem( title: 'GitHub', icon: 'assets/images/github.png', - iconColor: iconColor, + hasIconColor: true, linkTitle: S.current.apk_update, link: 'https://github.com/cake-tech/cake_wallet/releases'), LinkListItem( @@ -65,7 +57,7 @@ abstract class SupportViewModelBase with Store { LinkListItem( title: 'MoonPay', icon: 'assets/images/moonpay.png', - iconColor: iconColor, + hasIconColor: true, linkTitle: S.current.submit_request, link: 'https://support.moonpay.com/hc/en-gb/requests/new') ];