Constant Dark Theme
This commit is contained in:
@@ -15,8 +15,23 @@ class MyApp extends StatelessWidget {
|
||||
title: "Entry Point",
|
||||
theme: ThemeData(
|
||||
primarySwatch: Colors.blue,
|
||||
primaryColor: Colors.white,
|
||||
brightness: Brightness.light,
|
||||
dividerColor: Colors.white54,
|
||||
scaffoldBackgroundColor: Colors.white,
|
||||
),
|
||||
|
||||
darkTheme: ThemeData(
|
||||
primarySwatch: Colors.blue,
|
||||
primaryColor: Colors.black,
|
||||
brightness: Brightness.dark,
|
||||
dividerColor: Colors.black12,
|
||||
scaffoldBackgroundColor: Color(0xFF131313),
|
||||
|
||||
),
|
||||
|
||||
themeMode: ThemeMode.system,
|
||||
|
||||
// Navigashun with Routes
|
||||
// Base "Home" Route
|
||||
initialRoute: '/',
|
||||
|
||||
Reference in New Issue
Block a user