From c399073ffe8b1f9001abf14a9b7dfa5696cf6512 Mon Sep 17 00:00:00 2001 From: Sangam Shrestha <2shrestha22@gmail.com> Date: Sat, 8 Feb 2025 18:28:24 +0545 Subject: [PATCH] remove useMaterial3 --- compass_app/app/lib/ui/core/themes/theme.dart | 2 -- 1 file changed, 2 deletions(-) diff --git a/compass_app/app/lib/ui/core/themes/theme.dart b/compass_app/app/lib/ui/core/themes/theme.dart index a61b1fa8d26..ff44f07e249 100644 --- a/compass_app/app/lib/ui/core/themes/theme.dart +++ b/compass_app/app/lib/ui/core/themes/theme.dart @@ -56,7 +56,6 @@ abstract final class AppTheme { ); static ThemeData lightTheme = ThemeData( - useMaterial3: true, brightness: Brightness.light, colorScheme: AppColors.lightColorScheme, textTheme: _textTheme, @@ -70,7 +69,6 @@ abstract final class AppTheme { ); static ThemeData darkTheme = ThemeData( - useMaterial3: true, brightness: Brightness.dark, colorScheme: AppColors.darkColorScheme, textTheme: _textTheme,