This commit is contained in:
2026-08-08 10:57:54 +08:00
parent d0d48c1ffc
commit 604af909b0
184 changed files with 12521 additions and 12722 deletions
+18
View File
@@ -0,0 +1,18 @@
import 'package:flutter/material.dart';
import '../features/home/presentation/point_book_home_screen.dart';
import 'app_theme.dart';
class ArcxApp extends StatelessWidget {
const ArcxApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: '记分本',
debugShowCheckedModeBanner: false,
theme: AppTheme.light(),
home: const PointBookHomeScreen(),
);
}
}