feat: main page

This commit is contained in:
efrilm
2025-08-12 17:36:41 +07:00
parent f8477d8a8c
commit ae1293d28d
10 changed files with 255 additions and 13 deletions
@@ -0,0 +1,12 @@
import 'package:auto_route/auto_route.dart';
import 'package:flutter/material.dart';
@RoutePage()
class HomePage extends StatelessWidget {
const HomePage({super.key});
@override
Widget build(BuildContext context) {
return Center(child: Text('HomePage'));
}
}