initial commit

This commit is contained in:
2025-11-28 23:58:41 +03:00
commit 013690061c
77 changed files with 2337 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
import 'package:base_project/theme/theme_manager.dart';
import 'package:flutter/material.dart';
class HomeScreen extends StatelessWidget {
const HomeScreen({super.key});
@override
Widget build(BuildContext context) {
final theme = ThemeManager.getTheme(context);
return Scaffold(
appBar: AppBar(
title: const Text('Home Screen'),
centerTitle: true,
),
floatingActionButton: FloatingActionButton(
onPressed: () async {
}
),
body: const Center(
child: Text('Hello World!'),
),
);
}
}