feat: initial repo state

This commit is contained in:
Andrew 2026-06-16 21:08:17 +07:00
commit f25a4bb680
26 changed files with 578 additions and 0 deletions

20
lib/main.dart Normal file
View file

@ -0,0 +1,20 @@
import 'package:flutter/material.dart';
void main() {
runApp(const MainApp());
}
class MainApp extends StatelessWidget {
const MainApp({super.key});
@override
Widget build(BuildContext context) {
return const MaterialApp(
home: Scaffold(
body: Center(
child: Text('Hello World!'),
),
),
);
}
}