Sense_the_Rhythm/lib/main.dart

25 lines
463 B
Dart
Raw Normal View History

2024-12-16 16:04:07 +01:00
import 'package:flutter/material.dart';
2024-12-20 22:46:19 +01:00
import 'level_selection.dart';
2024-12-16 16:04:07 +01:00
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
useMaterial3: true,
),
2024-12-20 22:46:19 +01:00
home: LevelSelection()
2024-12-16 16:04:07 +01:00
);
}
}