basic structure with material 3

This commit is contained in:
Tito Arrigo
2023-09-27 13:24:31 +02:00
committed by Joe Küng
parent ce1e5223f0
commit 4d898eb5ea
3 changed files with 37 additions and 3 deletions

View File

@@ -6,8 +6,12 @@ class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return const MaterialApp(
return MaterialApp(
title: 'My App',
theme: ThemeData(
useMaterial3: true,
primaryColor: Colors.red,
),
home: Navigation()
);
}