20 lines
500 B
Dart
20 lines
500 B
Dart
import 'package:flutter/material.dart';
|
|
import 'core/theme/app_theme.dart';
|
|
import 'features/home/home_screen.dart';
|
|
|
|
class BullyApp extends StatelessWidget {
|
|
const BullyApp({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MaterialApp(
|
|
title: 'Bully - Analyse de Cibles',
|
|
debugShowCheckedModeBanner: false,
|
|
theme: AppTheme.lightTheme,
|
|
darkTheme: AppTheme.darkTheme,
|
|
themeMode: ThemeMode.system,
|
|
home: const HomeScreen(),
|
|
);
|
|
}
|
|
}
|