feat: base project

This commit is contained in:
efrilm
2025-08-12 15:18:38 +07:00
parent 2df3bb118a
commit cb5250459e
102 changed files with 3453 additions and 333 deletions
+21
View File
@@ -0,0 +1,21 @@
import 'package:auto_route/auto_route.dart';
import 'package:flutter/material.dart';
@RoutePage()
class SplashPage extends StatefulWidget {
const SplashPage({super.key});
@override
State<SplashPage> createState() => _SplashPageState();
}
class _SplashPageState extends State<SplashPage> {
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: Text("Splash Page"),
),
);
}
}