project setup

This commit is contained in:
SomnusVeritas
2023-11-08 10:29:02 +01:00
parent 7a0d1391ec
commit 0d843b442d
5 changed files with 30 additions and 1 deletions

View File

@@ -1,5 +1,7 @@
import 'package:flutter/material.dart';
import 'pages/dashboard_page.dart';
void main() {
runApp(const MyApp());
}
@@ -15,6 +17,9 @@ class MyApp extends StatelessWidget {
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
useMaterial3: true,
),
routes: {
DashboardPage.routeName: (context) => const DashboardPage(),
},
);
}
}