mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 01:47:41 +00:00
09c942564e
* 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>
117 lines
5 KiB
Dart
117 lines
5 KiB
Dart
import 'package:flutter/material.dart';
|
|
|
|
class SendPageTheme extends ThemeExtension<SendPageTheme> {
|
|
final Color templateTitleColor;
|
|
final Color templateBackgroundColor;
|
|
final Color templateNewTextColor;
|
|
final Color templateSelectedCurrencyBackgroundColor;
|
|
final Color templateSelectedCurrencyTitleColor;
|
|
final Color templateDottedBorderColor;
|
|
final Color estimatedFeeColor;
|
|
final Color textFieldButtonIconColor;
|
|
final Color textFieldButtonColor;
|
|
final Color textFieldHintColor;
|
|
final Color textFieldBorderColor;
|
|
final Color firstGradientColor;
|
|
final Color secondGradientColor;
|
|
final Color indicatorDotColor;
|
|
|
|
SendPageTheme(
|
|
{required this.templateTitleColor,
|
|
required this.templateBackgroundColor,
|
|
required this.templateNewTextColor,
|
|
required this.templateSelectedCurrencyBackgroundColor,
|
|
required this.templateSelectedCurrencyTitleColor,
|
|
required this.templateDottedBorderColor,
|
|
required this.estimatedFeeColor,
|
|
required this.textFieldButtonIconColor,
|
|
required this.textFieldButtonColor,
|
|
required this.textFieldHintColor,
|
|
required this.textFieldBorderColor,
|
|
required this.firstGradientColor,
|
|
required this.secondGradientColor,
|
|
required this.indicatorDotColor});
|
|
|
|
@override
|
|
SendPageTheme copyWith(
|
|
{Color? templateTitleColor,
|
|
Color? templateBackgroundColor,
|
|
Color? templateNewTextColor,
|
|
Color? templateSelectedCurrencyBackgroundColor,
|
|
Color? templateSelectedCurrencyTitleColor,
|
|
Color? templateDottedBorderColor,
|
|
Color? estimatedFeeColor,
|
|
Color? textFieldButtonIconColor,
|
|
Color? textFieldButtonColor,
|
|
Color? textFieldHintColor,
|
|
Color? textFieldBorderColor,
|
|
Color? firstGradientColor,
|
|
Color? secondGradientColor,
|
|
Color? indicatorDotColor}) =>
|
|
SendPageTheme(
|
|
templateTitleColor: templateTitleColor ?? this.templateTitleColor,
|
|
templateBackgroundColor:
|
|
templateBackgroundColor ?? this.templateBackgroundColor,
|
|
templateNewTextColor:
|
|
templateNewTextColor ?? this.templateNewTextColor,
|
|
templateSelectedCurrencyBackgroundColor:
|
|
templateSelectedCurrencyBackgroundColor ??
|
|
this.templateSelectedCurrencyBackgroundColor,
|
|
templateSelectedCurrencyTitleColor:
|
|
templateSelectedCurrencyTitleColor ??
|
|
this.templateSelectedCurrencyTitleColor,
|
|
templateDottedBorderColor:
|
|
templateDottedBorderColor ?? this.templateDottedBorderColor,
|
|
estimatedFeeColor: estimatedFeeColor ?? this.estimatedFeeColor,
|
|
textFieldButtonIconColor:
|
|
textFieldButtonIconColor ?? this.textFieldButtonIconColor,
|
|
textFieldButtonColor:
|
|
textFieldButtonColor ?? this.textFieldButtonColor,
|
|
textFieldHintColor: textFieldHintColor ?? this.textFieldHintColor,
|
|
textFieldBorderColor:
|
|
textFieldBorderColor ?? this.textFieldBorderColor,
|
|
firstGradientColor: firstGradientColor ?? this.firstGradientColor,
|
|
secondGradientColor: secondGradientColor ?? this.secondGradientColor,
|
|
indicatorDotColor: indicatorDotColor ?? this.indicatorDotColor);
|
|
|
|
@override
|
|
SendPageTheme lerp(ThemeExtension<SendPageTheme>? other, double t) {
|
|
if (other is! SendPageTheme) {
|
|
return this;
|
|
}
|
|
|
|
return SendPageTheme(
|
|
templateTitleColor:
|
|
Color.lerp(templateTitleColor, other.templateTitleColor, t)!,
|
|
templateBackgroundColor: Color.lerp(
|
|
templateBackgroundColor, other.templateBackgroundColor, t)!,
|
|
templateNewTextColor:
|
|
Color.lerp(templateNewTextColor, other.templateNewTextColor, t)!,
|
|
templateSelectedCurrencyBackgroundColor: Color.lerp(
|
|
templateSelectedCurrencyBackgroundColor,
|
|
other.templateSelectedCurrencyBackgroundColor,
|
|
t)!,
|
|
templateSelectedCurrencyTitleColor: Color.lerp(
|
|
templateSelectedCurrencyTitleColor,
|
|
other.templateSelectedCurrencyTitleColor,
|
|
t)!,
|
|
templateDottedBorderColor: Color.lerp(
|
|
templateDottedBorderColor, other.templateDottedBorderColor, t)!,
|
|
estimatedFeeColor:
|
|
Color.lerp(estimatedFeeColor, other.estimatedFeeColor, t)!,
|
|
textFieldButtonIconColor: Color.lerp(
|
|
textFieldButtonIconColor, other.textFieldButtonIconColor, t)!,
|
|
textFieldButtonColor:
|
|
Color.lerp(textFieldButtonColor, other.textFieldButtonColor, t)!,
|
|
textFieldHintColor:
|
|
Color.lerp(textFieldHintColor, other.textFieldHintColor, t)!,
|
|
textFieldBorderColor:
|
|
Color.lerp(textFieldBorderColor, other.textFieldBorderColor, t)!,
|
|
firstGradientColor:
|
|
Color.lerp(firstGradientColor, other.firstGradientColor, t)!,
|
|
secondGradientColor:
|
|
Color.lerp(secondGradientColor, other.secondGradientColor, t)!,
|
|
indicatorDotColor:
|
|
Color.lerp(indicatorDotColor, other.indicatorDotColor, t)!);
|
|
}
|
|
}
|