Initial commit

This commit is contained in:
gasaichandesu
2025-08-30 19:47:42 +04:00
commit 58d7808a8d
100 changed files with 6186 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
import 'package:flutter/material.dart';
import 'package:moonwell_launcher/app/home_screen/home_screen.dart';
import 'package:moonwell_launcher/app/theme/mw_theme.dart';
class MoonWellApp extends StatelessWidget {
const MoonWellApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'MoonWell',
home: const HomeScreen(),
theme: moonWellTheme(),
);
}
}