Skip to content

Commit

Permalink
Merge pull request #81 from trullse/fix/background-color
Browse files Browse the repository at this point in the history
fix: background color
  • Loading branch information
luffan authored Oct 14, 2024
2 parents c9ec746 + 8bb6476 commit 607913f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 2 additions & 1 deletion lib/src/presentation/pages/suggestion/suggestion_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,8 @@ class _SuggestionPageState extends State<SuggestionPage> {
children: [
Scaffold(
appBar: _appBar(stateManager, state.isEditable),
backgroundColor: context.theme.scaffoldBackgroundColor,
backgroundColor: theme.backgroundColor ??
context.theme.scaffoldBackgroundColor,
body: _MainContent(
onSaveToGallery: widget.onSaveToGallery,
onCommentTap: stateManager.openDeletingCommentConfirmation,
Expand Down
1 change: 0 additions & 1 deletion lib/src/presentation/pages/theme/suggestions_theme.dart
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ 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),
);

SuggestionsTheme copyWith({
Expand Down

0 comments on commit 607913f

Please sign in to comment.