mirror of
https://github.com/dancojocaru2000/logic-circuits-simulator.git
synced 2025-02-22 17:19:36 +02:00
Changed color scheme to orange and added dark mode
This commit is contained in:
parent
61dc1f1f45
commit
eb57b28d71
1 changed files with 6 additions and 1 deletions
|
@ -34,7 +34,12 @@ class MyApp extends StatelessWidget {
|
||||||
title: 'Logic Circuits Simulator',
|
title: 'Logic Circuits Simulator',
|
||||||
theme: ThemeData(
|
theme: ThemeData(
|
||||||
useMaterial3: true,
|
useMaterial3: true,
|
||||||
primarySwatch: Colors.amber,
|
primarySwatch: Colors.orange,
|
||||||
|
),
|
||||||
|
darkTheme: ThemeData(
|
||||||
|
useMaterial3: true,
|
||||||
|
primarySwatch: Colors.orange,
|
||||||
|
brightness: Brightness.dark,
|
||||||
),
|
),
|
||||||
routes: {
|
routes: {
|
||||||
ProjectsPage.routeName:(context) {
|
ProjectsPage.routeName:(context) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue