Skip to content

Commit

Permalink
fix: AppBarの背景を調整
Browse files Browse the repository at this point in the history
  • Loading branch information
YumNumm committed Sep 11, 2024
1 parent 936dd66 commit 0945f8b
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions app/lib/feature/home/view/home_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -61,16 +61,21 @@ class HomeView extends HookConsumerWidget {
preferredSize: const Size.fromHeight(kToolbarHeight * 0.8),
child: ClipRRect(
child: BackdropFilter(
filter: ImageFilter.blur(sigmaX: 4, sigmaY: 4),
filter: ImageFilter.blur(
sigmaX: 4,
sigmaY: 4,
tileMode: TileMode.decal,
),
child: ColoredBox(
color: colorScheme.surfaceContainer.withOpacity(0.8),
color: colorScheme.surfaceContainer.withOpacity(0.3),
child: AppBar(
title: Text(
'EQMonitor',
style: Theme.of(context).textTheme.titleLarge!.copyWith(
fontWeight: FontWeight.bold,
),
),
backgroundColor: Colors.transparent,
forceMaterialTransparency: true,
),
),
Expand Down

0 comments on commit 0945f8b

Please sign in to comment.