aggiunto schermate login e register

This commit is contained in:
saphi
2023-09-28 13:38:12 +02:00
parent e0a8559cd1
commit 11b10b7587
8 changed files with 344 additions and 7 deletions

View File

@@ -4,13 +4,13 @@ import 'navigation.dart';
class MyApp extends StatelessWidget {
const MyApp({ Key? key }) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'My App',
theme: ThemeData(
useMaterial3: true,
primaryColor: Colors.red,
useMaterial3: true
),
home: Navigation()
);