2024-12-16 16:04:07 +01:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
2025-01-11 18:22:32 +01:00
|
|
|
import 'package:sense_the_rhythm/screens/level_selection.dart';
|
2024-12-20 22:46:19 +01:00
|
|
|
|
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
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|