Skip to content

Commit

Permalink
refactor(theme): remove depreciated field
Browse files Browse the repository at this point in the history
  • Loading branch information
Merrit committed Jan 27, 2023
1 parent 30c26e5 commit 000bb1b
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions lib/theme/cubit/theme_state.dart
Expand Up @@ -20,8 +20,6 @@ class ThemeState extends Equatable {
);
final cardColor = isPitchBlack ? pitchBlack : null;
final scaffoldBackgroundColor = isPitchBlack ? pitchBlack : null;
final toggleableActiveColor =
isPitchBlack ? Colors.blue[900] : Colors.lightBlueAccent;
final tooltipThemeData = TooltipThemeData(
decoration: BoxDecoration(
color: Colors.grey[700]!.withOpacity(0.9),
Expand All @@ -39,7 +37,6 @@ class ThemeState extends Equatable {
brightness: brightness,
cardColor: cardColor,
scaffoldBackgroundColor: scaffoldBackgroundColor,
toggleableActiveColor: toggleableActiveColor,
tooltipTheme: tooltipThemeData,
);
}
Expand Down

0 comments on commit 000bb1b

Please sign in to comment.