Skip to content

Commit

Permalink
fix: incorrect background color using in view action menu (AppFlowy-I…
Browse files Browse the repository at this point in the history
  • Loading branch information
LucasXu0 authored Jan 30, 2024
1 parent 0b7ae73 commit e9d7d0b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ class _MobileViewPageState extends State<MobileViewPage> {
context,
showDragHandle: true,
showDivider: false,
backgroundColor: Theme.of(context).colorScheme.background,
backgroundColor: Theme.of(context).colorScheme.surface,
builder: (_) => _buildViewPageBottomSheet(context),
);
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ enum MobilePaneActionType {
context,
showDragHandle: true,
showDivider: false,
backgroundColor: Theme.of(context).colorScheme.background,
backgroundColor: Theme.of(context).colorScheme.surface,
useRootNavigator: true,
builder: (context) {
return MultiBlocProvider(
Expand Down

0 comments on commit e9d7d0b

Please sign in to comment.