diff --git a/experimental/linting_tool/lib/theme/app_theme.dart b/experimental/linting_tool/lib/theme/app_theme.dart index f37ffca7a..9096a21be 100644 --- a/experimental/linting_tool/lib/theme/app_theme.dart +++ b/experimental/linting_tool/lib/theme/app_theme.dart @@ -9,7 +9,7 @@ import 'package:linting_tool/theme/colors.dart'; abstract class AppTheme { static ThemeData buildReplyLightTheme(BuildContext context) { - final base = ThemeData.light(); + final base = ThemeData.light(useMaterial3: true); return base.copyWith( bottomSheetTheme: BottomSheetThemeData( backgroundColor: AppColors.blue700, @@ -45,7 +45,6 @@ abstract class AppTheme { textTheme: _buildReplyLightTextTheme(base.textTheme), scaffoldBackgroundColor: AppColors.blue50, bottomAppBarTheme: const BottomAppBarTheme(color: AppColors.blue700), - useMaterial3: true, ); }