Skip to content

Commit

Permalink
fix CI CD issue
Browse files Browse the repository at this point in the history
  • Loading branch information
luffan committed Jul 24, 2024
1 parent ab3ace6 commit c5d2886
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ packages:
path: ".."
relative: true
source: path
version: "0.4.2"
version: "0.4.3"
term_glyph:
dependency: transitive
description:
Expand Down
5 changes: 3 additions & 2 deletions lib/src/presentation/pages/theme/suggestions_theme.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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({
Expand All @@ -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,
Expand Down

0 comments on commit c5d2886

Please sign in to comment.