From c5d2886329559d6358a58355bf001384bd371d83 Mon Sep 17 00:00:00 2001 From: glebmikhalkou Date: Wed, 24 Jul 2024 11:43:25 +0300 Subject: [PATCH] fix CI CD issue --- example/pubspec.lock | 2 +- lib/src/presentation/pages/theme/suggestions_theme.dart | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/example/pubspec.lock b/example/pubspec.lock index 10c1e26..66162d4 100644 --- a/example/pubspec.lock +++ b/example/pubspec.lock @@ -246,7 +246,7 @@ packages: path: ".." relative: true source: path - version: "0.4.2" + version: "0.4.3" term_glyph: dependency: transitive description: diff --git a/lib/src/presentation/pages/theme/suggestions_theme.dart b/lib/src/presentation/pages/theme/suggestions_theme.dart index ca6e49f..8cb0fb6 100644 --- a/lib/src/presentation/pages/theme/suggestions_theme.dart +++ b/lib/src/presentation/pages/theme/suggestions_theme.dart @@ -52,7 +52,7 @@ class SuggestionsTheme { bugLabelColor: const Color.fromRGBO(246, 24, 48, 1), fade: const Color.fromRGBO(0, 0, 0, 0.65), fabColor: const Color.fromRGBO(33, 33, 33, 0.12), - backgroundColor: const Color.fromRGBO(255,255,255, 0), + backgroundColor: const Color.fromRGBO(255, 255, 255, 0), ); SuggestionsTheme copyWith({ @@ -75,7 +75,8 @@ class SuggestionsTheme { return SuggestionsTheme( actionColor: actionColor ?? this.actionColor, actionPressedColor: actionPressedColor ?? this.actionPressedColor, - actionBackgroundColor: actionBackgroundColor ?? this.actionBackgroundColor, + actionBackgroundColor: + actionBackgroundColor ?? this.actionBackgroundColor, disabledTextColor: disabledTextColor ?? this.disabledTextColor, upvoteArrowColor: upvoteArrowColor ?? this.upvoteArrowColor, requestsTabColor: requestsTabColor ?? this.requestsTabColor,