diff --git a/assets/images/game_background.png b/assets/images/game_background.png index dd7f2033..5d9e315f 100644 Binary files a/assets/images/game_background.png and b/assets/images/game_background.png differ diff --git a/lib/game/widgets/game_background.dart b/lib/game/widgets/game_background.dart index 5902f1ea..7af73e10 100644 --- a/lib/game/widgets/game_background.dart +++ b/lib/game/widgets/game_background.dart @@ -1,5 +1,3 @@ -import 'dart:ui'; - import 'package:dash_run/gen/assets.gen.dart'; import 'package:flutter/material.dart'; @@ -9,13 +7,8 @@ class GameBackground extends StatelessWidget { @override Widget build(BuildContext context) { return SizedBox.expand( - child: ImageFiltered( - imageFilter: ImageFilter.blur(sigmaX: 2, sigmaY: 2), - child: Assets.images.gameBackground.image( - fit: BoxFit.cover, - color: Colors.black54, - colorBlendMode: BlendMode.darken, - ), + child: Assets.images.gameBackground.image( + fit: BoxFit.cover, ), ); }