cake_wallet/lib/themes/extensions/menu_theme.dart
Rafael Saes 09c942564e
Cw 396 additional themes (#962)
* fix: SectionStandardList using BuildContext as param

* refactor: deprecated backgroundColor -> colorScheme.background

* refactor: themeBase and current themes

* refactor: accentTextTheme.titleLarge.color -> dialogTheme.backgroundColor

* refactor: gradient background

* refactor: text themes using the same color as primaryColor

* refactor: accentTextTheme.bodySmall.color -> cardColor

* refactor: text themes using same dialogBackgroundColor

* refactor: scrollbarTheme

* refactor: create SyncIndicatorTheme

* refactor: SectionDivider

* refactor: base_page improvements and simplify

* refactor: collapsible_standart_list improvements

* refactor: accentTextTheme.bodyLarge.backgroundColor -> KeyboardTheme.keyboardBarColor

* refactor: create PinCodeTheme for accentTextTheme.bodyMedium

* refactor: create SupportPageTheme for accentTextTheme.displayLarge.backgroundColor and fix cases that use it

* refactor: accentTextTheme.displayLarge.color -> disabledColor

* refactor: create ExchangePageTheme

* refactor: create DashboardPageTheme and use textColor

* refactor: create NewWalletTheme for accentTextTheme.displayMedium

* refactor: create BalancePageTheme for accentTextTheme.displaySmall.backgroundColor

* refactor: create AddressTheme for accentTextTheme.displaySmall.color

* refactor: create IndicatorDotTheme

* refactor: create CakeMenuTheme

* refactor: create FilterTheme

* refactor: create WalletListTheme

* refactor: accentTextTheme.bodySmall.decorationColor -> InfoTheme.textColor

* refactor: accentTextTheme.titleLarge.backgroundColor -> PickerTheme.dividerColor

* refactor: primaryTextTheme.bodyLarge.backgroundColor -> AlertTheme.leftButtonTextColor

* refactor: primaryTextTheme.displayLarge.backgroundColor -> OrderTheme.iconColor

* refactor: create SendPageTheme

* fix: missing migrated styles

* refactor: primaryTextTheme.labelSmall.decorationColor -> PlaceholderTheme.color

* refactor: create TransactionTradeTheme

* refactor: create CakeTextTheme

* refactor: create AccountListTheme

* refactor: create ReceivePageTheme

* refactor: create QRCodeTheme

* refactor: move remaining items to CakeTextTheme and some missing fixes

* feat(display_settings): add new theme selector

* feat: additional themes

* fix: conflict error

* fix(lag): move colorScheme initialization to constructor

* feat: add backdropColor to alert and picker backdrop filters

* fix: merge fixes

* fix: send template page missing new colors

* fix: anonpay pages title and icon colors

* fix: merge fixes

* fix: unspent coins page

* fix: also fix exchange template

* fix: missing checkbox

* fix: fixes for high contrast theme

* Merge branch 'main' into CW-396-additional-themes

* fix: merge fixes

* fix: .gitignore and rm added files

* Fix review comments

---------

Co-authored-by: OmarHatem <omarh.ismail1@gmail.com>
2023-08-17 18:28:31 +03:00

75 lines
2.9 KiB
Dart

import 'package:flutter/material.dart';
class CakeMenuTheme extends ThemeExtension<CakeMenuTheme> {
final Color headerFirstGradientColor;
final Color headerSecondGradientColor;
final Color subnameTextColor;
final Color dividerColor;
final Color backgroundColor;
final Color iconColor;
final Color settingActionsIconColor;
final Color settingTitleColor;
CakeMenuTheme(
{required this.headerFirstGradientColor,
required this.headerSecondGradientColor,
required this.backgroundColor,
required this.subnameTextColor,
required this.dividerColor,
required this.iconColor,
required this.settingActionsIconColor,
required this.settingTitleColor});
@override
CakeMenuTheme copyWith(
{Color? headerFirstGradientColor,
Color? headerSecondGradientColor,
Color? backgroundColor,
Color? subnameTextColor,
Color? dividerColor,
Color? iconColor,
Color? settingActionsIconColor,
Color? settingTitleColor}) =>
CakeMenuTheme(
headerFirstGradientColor:
headerFirstGradientColor ?? this.headerFirstGradientColor,
headerSecondGradientColor:
headerSecondGradientColor ?? this.headerSecondGradientColor,
backgroundColor: backgroundColor ?? this.backgroundColor,
subnameTextColor: subnameTextColor ?? this.subnameTextColor,
dividerColor: dividerColor ?? this.dividerColor,
iconColor: iconColor ?? this.iconColor,
settingActionsIconColor:
settingActionsIconColor ?? this.settingActionsIconColor,
settingTitleColor: settingTitleColor ?? this.settingTitleColor);
@override
CakeMenuTheme lerp(ThemeExtension<CakeMenuTheme>? other, double t) {
if (other is! CakeMenuTheme) {
return this;
}
return CakeMenuTheme(
headerFirstGradientColor: Color.lerp(
headerFirstGradientColor, other.headerFirstGradientColor, t) ??
headerFirstGradientColor,
headerSecondGradientColor: Color.lerp(headerSecondGradientColor,
other.headerSecondGradientColor, t) ??
headerSecondGradientColor,
backgroundColor:
Color.lerp(backgroundColor, other.backgroundColor, t) ??
backgroundColor,
subnameTextColor:
Color.lerp(subnameTextColor, other.subnameTextColor, t) ??
subnameTextColor,
dividerColor:
Color.lerp(dividerColor, other.dividerColor, t) ?? dividerColor,
iconColor: Color.lerp(iconColor, other.iconColor, t) ?? iconColor,
settingActionsIconColor: Color.lerp(
settingActionsIconColor, other.settingActionsIconColor, t) ??
settingActionsIconColor,
settingTitleColor: Color.lerp(
settingTitleColor, other.settingTitleColor, t) ??
settingTitleColor);
}
}