Files
progetto-m335-flutter/lib/myApp.dart
2023-09-29 08:28:08 +02:00

20 lines
389 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()
);
}
}