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>
70 lines
2.8 KiB
Dart
70 lines
2.8 KiB
Dart
import 'package:flutter/material.dart';
|
|
|
|
class ReceivePageTheme extends ThemeExtension<ReceivePageTheme> {
|
|
final Color currentTileBackgroundColor;
|
|
final Color currentTileTextColor;
|
|
final Color tilesBackgroundColor;
|
|
final Color tilesTextColor;
|
|
final Color iconsBackgroundColor;
|
|
final Color iconsColor;
|
|
final Color amountBottomBorderColor;
|
|
final Color amountHintTextColor;
|
|
|
|
ReceivePageTheme(
|
|
{required this.currentTileBackgroundColor,
|
|
required this.currentTileTextColor,
|
|
required this.tilesBackgroundColor,
|
|
required this.tilesTextColor,
|
|
required this.iconsBackgroundColor,
|
|
required this.iconsColor,
|
|
required this.amountBottomBorderColor,
|
|
required this.amountHintTextColor});
|
|
|
|
@override
|
|
ReceivePageTheme copyWith(
|
|
{Color? currentTileBackgroundColor,
|
|
Color? currentTileTextColor,
|
|
Color? tilesBackgroundColor,
|
|
Color? tilesTextColor,
|
|
Color? iconsBackgroundColor,
|
|
Color? iconsColor,
|
|
Color? amountBottomBorderColor,
|
|
Color? amountHintTextColor}) =>
|
|
ReceivePageTheme(
|
|
currentTileBackgroundColor:
|
|
currentTileBackgroundColor ?? this.currentTileBackgroundColor,
|
|
currentTileTextColor:
|
|
currentTileTextColor ?? this.currentTileTextColor,
|
|
tilesBackgroundColor:
|
|
tilesBackgroundColor ?? this.tilesBackgroundColor,
|
|
tilesTextColor: tilesTextColor ?? this.tilesTextColor,
|
|
iconsBackgroundColor:
|
|
iconsBackgroundColor ?? this.iconsBackgroundColor,
|
|
iconsColor: iconsColor ?? this.iconsColor,
|
|
amountBottomBorderColor:
|
|
amountBottomBorderColor ?? this.amountBottomBorderColor,
|
|
amountHintTextColor: amountHintTextColor ?? this.amountHintTextColor);
|
|
|
|
@override
|
|
ReceivePageTheme lerp(ThemeExtension<ReceivePageTheme>? other, double t) {
|
|
if (other is! ReceivePageTheme) {
|
|
return this;
|
|
}
|
|
|
|
return ReceivePageTheme(
|
|
currentTileBackgroundColor: Color.lerp(
|
|
currentTileBackgroundColor, other.currentTileBackgroundColor, t)!,
|
|
currentTileTextColor:
|
|
Color.lerp(currentTileTextColor, other.currentTileTextColor, t)!,
|
|
tilesBackgroundColor:
|
|
Color.lerp(tilesBackgroundColor, other.tilesBackgroundColor, t)!,
|
|
tilesTextColor: Color.lerp(tilesTextColor, other.tilesTextColor, t)!,
|
|
iconsBackgroundColor:
|
|
Color.lerp(iconsBackgroundColor, other.iconsBackgroundColor, t)!,
|
|
iconsColor: Color.lerp(iconsColor, other.iconsColor, t)!,
|
|
amountBottomBorderColor: Color.lerp(
|
|
amountBottomBorderColor, other.amountBottomBorderColor, t)!,
|
|
amountHintTextColor:
|
|
Color.lerp(amountHintTextColor, other.amountHintTextColor, t)!);
|
|
}
|
|
}
|