This commit is contained in:
admin
2026-06-02 19:01:08 +08:00
commit 7222796781
205 changed files with 10850 additions and 0 deletions

25
lib/main.dart Normal file
View File

@@ -0,0 +1,25 @@
import 'package:flutter/material.dart';
import 'screens/freecell_screen.dart';
import 'screens/loading_screen.dart';
import 'screens/start_screen.dart';
void main() {
WidgetsFlutterBinding.ensureInitialized();
runApp(const FreeCellDemoApp());
}
class FreeCellDemoApp extends StatelessWidget {
const FreeCellDemoApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
home: const LoadingScreen(),
routes: {
'/start': (context) => const StartScreen(),
'/game': (context) => const FreeCellScreen(),
},
);
}
}