initial commit
This commit is contained in:
28
lib/features/home/home_screen.dart
Normal file
28
lib/features/home/home_screen.dart
Normal 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!'),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user