diff --git a/lib/src/screens/exchange/widgets/mobile_exchange_cards_section.dart b/lib/src/screens/exchange/widgets/mobile_exchange_cards_section.dart index e4ad5ef84..4606b21d5 100644 --- a/lib/src/screens/exchange/widgets/mobile_exchange_cards_section.dart +++ b/lib/src/screens/exchange/widgets/mobile_exchange_cards_section.dart @@ -93,15 +93,7 @@ class _BuySellOptionButtonsState extends State { textColor: isBuySelected ? Theme.of(context).colorScheme.onPrimary : Theme.of(context).colorScheme.onSecondaryContainer, - image: Image.asset( - 'assets/images/buy.png', - height: 25, - width: 25, - color: isBuySelected - ? Theme.of(context).colorScheme.onPrimary - : Theme.of(context).colorScheme.onSecondaryContainer, - ), - padding: EdgeInsets.only(left: 10, right: 30), + padding: EdgeInsets.only(left: 50, right: 30), color: isBuySelected ? Theme.of(context).colorScheme.primary : Theme.of(context).colorScheme.surfaceContainer, @@ -122,15 +114,7 @@ class _BuySellOptionButtonsState extends State { textColor: !isBuySelected ? Theme.of(context).colorScheme.onPrimary : Theme.of(context).colorScheme.onSecondaryContainer, - image: Image.asset( - 'assets/images/sell.png', - height: 25, - width: 25, - color: !isBuySelected - ? Theme.of(context).colorScheme.onPrimary - : Theme.of(context).colorScheme.onSecondaryContainer, - ), - padding: EdgeInsets.only(left: 10, right: 30), + padding: EdgeInsets.only(left: 50, right: 30), color: !isBuySelected ? Theme.of(context).colorScheme.primary : Theme.of(context).colorScheme.surfaceContainer, diff --git a/lib/src/screens/welcome/welcome_page.dart b/lib/src/screens/welcome/welcome_page.dart index 0b1bce2e3..a78d826d7 100644 --- a/lib/src/screens/welcome/welcome_page.dart +++ b/lib/src/screens/welcome/welcome_page.dart @@ -33,7 +33,7 @@ class WelcomePage extends BasePage { final Uri _url = Uri.parse('https://docs.cakewallet.com/get-started/setup/create-first-wallet/'); return IconButton( - icon: Icon(Icons.info_outline), + icon: Icon(Icons.info_outline, size: 26,), onPressed: () async { await launchUrl(_url); }, diff --git a/lib/src/widgets/bottom_sheet/info_bottom_sheet_widget.dart b/lib/src/widgets/bottom_sheet/info_bottom_sheet_widget.dart index 5ebf59411..3a6403651 100644 --- a/lib/src/widgets/bottom_sheet/info_bottom_sheet_widget.dart +++ b/lib/src/widgets/bottom_sheet/info_bottom_sheet_widget.dart @@ -88,7 +88,6 @@ class InfoBottomSheet extends BaseBottomSheet { textAlign: TextAlign.center, style: Theme.of(context).textTheme.bodyMedium!.copyWith( fontSize: 16, - fontWeight: FontWeight.w500, color: Theme.of(context).colorScheme.onSurfaceVariant, decoration: TextDecoration.none, @@ -138,12 +137,8 @@ class InfoBottomSheet extends BaseBottomSheet { key: leftActionButtonKey, onPressed: actionLeftButton, text: leftButtonText ?? '', - color: currentTheme.isDark - ? Theme.of(context).colorScheme.surfaceContainerLow - : Theme.of(context).colorScheme.surfaceContainer, - textColor: currentTheme.isDark - ? Theme.of(context).colorScheme.onSurfaceVariant - : Theme.of(context).colorScheme.onPrimary, + color: Theme.of(context).colorScheme.surfaceContainer, + textColor: Theme.of(context).colorScheme.onSecondaryContainer, ), ), ), @@ -155,9 +150,7 @@ class InfoBottomSheet extends BaseBottomSheet { onPressed: actionRightButton, text: rightButtonText ?? '', color: Theme.of(context).colorScheme.primary, - textColor: currentTheme.isDark - ? Theme.of(context).colorScheme.onSurfaceVariant - : Theme.of(context).colorScheme.onPrimary, + textColor: Theme.of(context).colorScheme.onPrimary, ), ), ),