From ae0dc7edb5e770088fdbb674126d5adb6ddb801c Mon Sep 17 00:00:00 2001 From: Eduardo Azevedo Date: Thu, 30 Nov 2023 11:49:45 -0300 Subject: [PATCH] Removing material app color (not needed) --- lib/main.dart | 1 - lib/src/core/utils/app_themes.dart | 1 - 2 files changed, 2 deletions(-) diff --git a/lib/main.dart b/lib/main.dart index d68d49e..a68794f 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -19,7 +19,6 @@ class MyApp extends StatelessWidget { supportedLocales: AppConstants.supportedLocales, theme: AppThemes.light, darkTheme: AppThemes.dark, - color: AppThemes.materialAppColor, initialRoute: HomePage.route, routes: { HomePage.route: (_) => HomePage(controller: HomeController()), diff --git a/lib/src/core/utils/app_themes.dart b/lib/src/core/utils/app_themes.dart index 4252233..f1ef12f 100644 --- a/lib/src/core/utils/app_themes.dart +++ b/lib/src/core/utils/app_themes.dart @@ -1,7 +1,6 @@ import 'package:flutter/material.dart'; class AppThemes { - static const Color materialAppColor = Colors.black; static const Color primaryColor = Colors.blue; static const Color lightBackgroundColor = Color.fromRGBO(236, 239, 241, 1); static const Color darkBackgroundColor = Colors.black;