Files
progetto-m335-flutter/lib/myApp.dart
Tito Arrigo ca504e5e24 Merge remote-tracking branch 'origin/firebase' into dev
# Conflicts:
#	lib/database/database.dart
#	lib/model/note.dart
#	lib/model/promemoria.dart
#	lib/navigation.dart
#	lib/pages/InboxView.dart
#	lib/pages/TodayView.dart
#	pubspec.yaml
2023-09-29 10:27:17 +02:00

21 lines
390 B
Dart

import 'package:flutter/material.dart';
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,
colorSchemeSeed: Colors.blue,
),
home: Navigation()
);
}
}