diff --git a/lib/pages/wallets_view/sub_widgets/empty_wallets.dart b/lib/pages/wallets_view/sub_widgets/empty_wallets.dart index 7e2f4b827..aad719bcc 100644 --- a/lib/pages/wallets_view/sub_widgets/empty_wallets.dart +++ b/lib/pages/wallets_view/sub_widgets/empty_wallets.dart @@ -102,13 +102,15 @@ class EmptyWallets extends ConsumerWidget { } } -class AddWalletButton extends StatelessWidget { +class AddWalletButton extends ConsumerWidget { const AddWalletButton({Key? key, required this.isDesktop}) : super(key: key); final bool isDesktop; @override - Widget build(BuildContext context) { + Widget build(BuildContext context, WidgetRef ref) { + final bool isOLED = ref.read(colorThemeProvider.state).state.themeType == + ThemeType.oledBlack; return TextButton( style: Theme.of(context) .extension()! @@ -131,11 +133,20 @@ class AddWalletButton extends StatelessWidget { child: Row( mainAxisAlignment: MainAxisAlignment.center, children: [ - SvgPicture.asset( - Assets.svg.plus, - width: isDesktop ? 18 : null, - height: isDesktop ? 18 : null, - ), + isOLED + ? SvgPicture.asset( + Assets.svg.plus, + color: Theme.of(context) + .extension()! + .buttonTextPrimary, + width: isDesktop ? 18 : null, + height: isDesktop ? 18 : null, + ) + : SvgPicture.asset( + Assets.svg.plus, + width: isDesktop ? 18 : null, + height: isDesktop ? 18 : null, + ), SizedBox( width: isDesktop ? 8 : 5, ),