Created empty overview page
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
import 'pages/overview_page.dart';
|
||||
|
||||
void main() {
|
||||
runApp(const RecipeJournal());
|
||||
}
|
||||
@@ -12,9 +14,16 @@ class RecipeJournal extends StatelessWidget {
|
||||
return MaterialApp(
|
||||
title: 'Recipe Journal',
|
||||
theme: ThemeData(
|
||||
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
|
||||
colorScheme: ColorScheme.fromSeed(
|
||||
seedColor: Colors.deepPurple,
|
||||
brightness: Brightness.dark,
|
||||
),
|
||||
useMaterial3: true,
|
||||
),
|
||||
routes: {
|
||||
OverviewPage.routeName: (context) => OverviewPage(),
|
||||
},
|
||||
initialRoute: OverviewPage.routeName,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user