22 lines
478 B
Dart
22 lines
478 B
Dart
import 'package:flutter/material.dart';
|
|
import '/screens/login_screen.dart';
|
|
import '/theme/app_theme.dart';
|
|
|
|
void main() {
|
|
runApp(const MyApp());
|
|
}
|
|
|
|
class MyApp extends StatelessWidget {
|
|
const MyApp({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MaterialApp(
|
|
title: 'Amazons Network',
|
|
theme: AppTheme.lightTheme,
|
|
debugShowCheckedModeBanner: false,
|
|
home: const LoginScreen(), // Start with the Login Screen
|
|
);
|
|
}
|
|
}
|