cake_wallet/lib/themes/extensions/support_page_theme.dart

22 lines
573 B
Dart
Raw Normal View History

import 'package:flutter/material.dart';
class SupportPageTheme extends ThemeExtension<SupportPageTheme> {
final Color iconColor;
SupportPageTheme({required this.iconColor});
@override
SupportPageTheme copyWith({Color? iconColor}) =>
SupportPageTheme(iconColor: iconColor ?? this.iconColor);
@override
SupportPageTheme lerp(ThemeExtension<SupportPageTheme>? other, double t) {
if (other is! SupportPageTheme) {
return this;
}
return SupportPageTheme(
iconColor: Color.lerp(iconColor, other.iconColor, t) ?? iconColor);
}
}