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