19 lines
433 B
Dart
19 lines
433 B
Dart
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(),
|
|
);
|
|
}
|
|
}
|