aboutsummaryrefslogtreecommitdiffstats
path: root/lib/presentation/screens/home/home.dart
diff options
context:
space:
mode:
Diffstat (limited to 'lib/presentation/screens/home/home.dart')
-rw-r--r--lib/presentation/screens/home/home.dart6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/presentation/screens/home/home.dart b/lib/presentation/screens/home/home.dart
index 41f6895..9719f8f 100644
--- a/lib/presentation/screens/home/home.dart
+++ b/lib/presentation/screens/home/home.dart
@@ -31,9 +31,9 @@ class HomeScreenState extends ConsumerState<HomeScreen> {
) {
return Consumer(builder: (context, ref, child) {
final state = ref.read(appProvider);
- const disableBkgAnimation = bool.fromEnvironment('DISABLE_BKG_ANIMATION');
- if(disableBkgAnimation)
- print('Background animation: disabled');
+ if (disableBkgAnimation) {
+ debugPrint('Background animation: disabled');
+ }
return Scaffold(
key: homeScaffoldKey,
extendBody: true,