52 lines
1.6 KiB
Dart
52 lines
1.6 KiB
Dart
|
|
import 'package:flutter/material.dart';
|
||
|
|
import 'package:flutter_localizations/flutter_localizations.dart';
|
||
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
||
|
|
|
||
|
|
import 'core/router/app_router.dart';
|
||
|
|
import 'features/notifications/notification_provider.dart';
|
||
|
|
|
||
|
|
Future<void> main() async {
|
||
|
|
WidgetsFlutterBinding.ensureInitialized();
|
||
|
|
await initLocalNotifications();
|
||
|
|
runApp(const ProviderScope(child: MeeziWaiterApp()));
|
||
|
|
}
|
||
|
|
|
||
|
|
class MeeziWaiterApp extends ConsumerWidget {
|
||
|
|
const MeeziWaiterApp({super.key});
|
||
|
|
|
||
|
|
@override
|
||
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
||
|
|
final router = ref.watch(appRouterProvider);
|
||
|
|
|
||
|
|
return MaterialApp.router(
|
||
|
|
title: 'میزی — گارسون',
|
||
|
|
debugShowCheckedModeBanner: false,
|
||
|
|
locale: const Locale('fa'),
|
||
|
|
supportedLocales: const [Locale('fa'), Locale('ar'), Locale('en')],
|
||
|
|
localizationsDelegates: const [
|
||
|
|
GlobalMaterialLocalizations.delegate,
|
||
|
|
GlobalWidgetsLocalizations.delegate,
|
||
|
|
GlobalCupertinoLocalizations.delegate,
|
||
|
|
],
|
||
|
|
theme: ThemeData(
|
||
|
|
colorScheme: ColorScheme.fromSeed(
|
||
|
|
seedColor: const Color(0xFF10B981), // emerald-500
|
||
|
|
brightness: Brightness.light,
|
||
|
|
),
|
||
|
|
useMaterial3: true,
|
||
|
|
fontFamily: 'Vazirmatn',
|
||
|
|
),
|
||
|
|
darkTheme: ThemeData(
|
||
|
|
colorScheme: ColorScheme.fromSeed(
|
||
|
|
seedColor: const Color(0xFF10B981),
|
||
|
|
brightness: Brightness.dark,
|
||
|
|
),
|
||
|
|
useMaterial3: true,
|
||
|
|
fontFamily: 'Vazirmatn',
|
||
|
|
),
|
||
|
|
themeMode: ThemeMode.system,
|
||
|
|
routerConfig: router,
|
||
|
|
);
|
||
|
|
}
|
||
|
|
}
|