cake_wallet/lib/themes/extensions/exchange_page_theme.dart

89 lines
4.5 KiB
Dart
Raw Normal View History

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 15:28:31 +00:00
import 'package:flutter/material.dart';
class ExchangePageTheme extends ThemeExtension<ExchangePageTheme> {
final Color hintTextColor;
final Color receiveAmountColor;
final Color firstGradientTopPanelColor;
final Color secondGradientTopPanelColor;
final Color firstGradientBottomPanelColor;
final Color secondGradientBottomPanelColor;
final Color textFieldBorderTopPanelColor;
final Color textFieldBorderBottomPanelColor;
final Color textFieldButtonColor;
final Color buttonBackgroundColor;
final Color qrCodeColor;
final Color dividerCodeColor;
ExchangePageTheme(
{required this.hintTextColor,
required this.receiveAmountColor,
required this.firstGradientTopPanelColor,
required this.secondGradientTopPanelColor,
required this.firstGradientBottomPanelColor,
required this.secondGradientBottomPanelColor,
required this.textFieldBorderTopPanelColor,
required this.textFieldBorderBottomPanelColor,
required this.textFieldButtonColor,
required this.buttonBackgroundColor,
required this.qrCodeColor,
required this.dividerCodeColor});
@override
ExchangePageTheme copyWith({
Color? hintTextColor,
Color? receiveAmountColor,
Color? firstGradientTopPanelColor,
Color? secondGradientTopPanelColor,
Color? firstGradientBottomPanelColor,
Color? secondGradientBottomPanelColor,
Color? textFieldBorderTopPanelColor,
Color? textFieldBorderBottomPanelColor,
Color? textFieldButtonColor,
Color? buttonBackgroundColor,
Color? qrCodeColor,
Color? dividerCodeColor,
}) =>
ExchangePageTheme(
hintTextColor: hintTextColor ?? this.hintTextColor,
receiveAmountColor: receiveAmountColor ?? this.receiveAmountColor,
firstGradientTopPanelColor:
firstGradientTopPanelColor ?? this.firstGradientTopPanelColor,
secondGradientTopPanelColor:
secondGradientTopPanelColor ?? this.secondGradientTopPanelColor,
firstGradientBottomPanelColor: firstGradientBottomPanelColor ??
this.firstGradientBottomPanelColor,
secondGradientBottomPanelColor: secondGradientBottomPanelColor ??
this.secondGradientBottomPanelColor,
textFieldBorderTopPanelColor:
textFieldBorderTopPanelColor ?? this.textFieldBorderTopPanelColor,
textFieldBorderBottomPanelColor: textFieldBorderBottomPanelColor ??
this.textFieldBorderBottomPanelColor,
textFieldButtonColor:
textFieldButtonColor ?? this.textFieldButtonColor,
buttonBackgroundColor:
buttonBackgroundColor ?? this.buttonBackgroundColor,
qrCodeColor: qrCodeColor ?? this.qrCodeColor,
dividerCodeColor: dividerCodeColor ?? this.dividerCodeColor);
@override
ExchangePageTheme lerp(ThemeExtension<ExchangePageTheme>? other, double t) {
if (other is! ExchangePageTheme) {
return this;
}
return ExchangePageTheme(
hintTextColor: Color.lerp(hintTextColor, other.hintTextColor, t) ?? hintTextColor,
receiveAmountColor: Color.lerp(receiveAmountColor, other.receiveAmountColor, t) ?? receiveAmountColor,
firstGradientTopPanelColor: Color.lerp(firstGradientTopPanelColor, other.firstGradientTopPanelColor, t) ?? firstGradientTopPanelColor,
secondGradientTopPanelColor: Color.lerp(secondGradientTopPanelColor, other.secondGradientTopPanelColor, t) ?? secondGradientTopPanelColor,
firstGradientBottomPanelColor: Color.lerp(firstGradientBottomPanelColor, other.firstGradientBottomPanelColor, t) ?? firstGradientBottomPanelColor,
secondGradientBottomPanelColor: Color.lerp(secondGradientBottomPanelColor, other.secondGradientBottomPanelColor, t) ?? secondGradientBottomPanelColor,
textFieldBorderTopPanelColor: Color.lerp(textFieldBorderTopPanelColor, other.textFieldBorderTopPanelColor, t) ?? textFieldBorderTopPanelColor,
textFieldBorderBottomPanelColor: Color.lerp(textFieldBorderBottomPanelColor, other.textFieldBorderBottomPanelColor, t) ?? textFieldBorderBottomPanelColor,
textFieldButtonColor: Color.lerp(textFieldButtonColor, other.textFieldButtonColor, t) ?? textFieldButtonColor,
buttonBackgroundColor: Color.lerp(buttonBackgroundColor, other.buttonBackgroundColor, t) ?? buttonBackgroundColor,
qrCodeColor: Color.lerp(qrCodeColor, other.qrCodeColor, t) ?? qrCodeColor,
dividerCodeColor: Color.lerp(dividerCodeColor, other.dividerCodeColor, t) ?? dividerCodeColor);
}
}