first commit

This commit is contained in:
2026-01-20 16:34:54 +07:00
commit 2ac772b6de
4186 changed files with 123824 additions and 0 deletions

26
lib/main.dart Normal file
View File

@@ -0,0 +1,26 @@
import 'package:flutter/material.dart';
import 'package:photobooth_mobile_app/core/image/image_cleanup_service.dart';
import 'package:photobooth_mobile_app/modules/splash/splash_screen.dart';
Future<void> main() async {
WidgetsFlutterBinding.ensureInitialized();
await cleanTempOnStart();
runApp(PhotoFrameApp());
}
class PhotoFrameApp extends StatelessWidget {
const PhotoFrameApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
title: 'Photo Frame A5',
theme: ThemeData(
primarySwatch: Colors.deepOrange,
visualDensity: VisualDensity.adaptivePlatformDensity,
),
home: const SplashScreen(),
);
}
}