mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 18:07:44 +00:00
39 lines
1.4 KiB
Dart
39 lines
1.4 KiB
Dart
|
import 'package:flutter/material.dart';
|
||
|
|
||
|
class WalletListTheme extends ThemeExtension<WalletListTheme> {
|
||
|
final Color restoreWalletButtonTextColor;
|
||
|
final Color createNewWalletButtonBackgroundColor;
|
||
|
|
||
|
WalletListTheme(
|
||
|
{required this.restoreWalletButtonTextColor,
|
||
|
required this.createNewWalletButtonBackgroundColor});
|
||
|
|
||
|
@override
|
||
|
WalletListTheme copyWith(
|
||
|
{Color? restoreWalletButtonTextColor,
|
||
|
Color? createNewWalletButtonBackgroundColor}) =>
|
||
|
WalletListTheme(
|
||
|
restoreWalletButtonTextColor:
|
||
|
restoreWalletButtonTextColor ?? this.restoreWalletButtonTextColor,
|
||
|
createNewWalletButtonBackgroundColor:
|
||
|
createNewWalletButtonBackgroundColor ??
|
||
|
this.createNewWalletButtonBackgroundColor);
|
||
|
|
||
|
@override
|
||
|
WalletListTheme lerp(ThemeExtension<WalletListTheme>? other, double t) {
|
||
|
if (other is! WalletListTheme) {
|
||
|
return this;
|
||
|
}
|
||
|
|
||
|
return WalletListTheme(
|
||
|
restoreWalletButtonTextColor: Color.lerp(restoreWalletButtonTextColor,
|
||
|
other.restoreWalletButtonTextColor, t) ??
|
||
|
restoreWalletButtonTextColor,
|
||
|
createNewWalletButtonBackgroundColor: Color.lerp(
|
||
|
createNewWalletButtonBackgroundColor,
|
||
|
other.createNewWalletButtonBackgroundColor,
|
||
|
t) ??
|
||
|
createNewWalletButtonBackgroundColor);
|
||
|
}
|
||
|
}
|