33 lines
916 B
Dart
33 lines
916 B
Dart
|
|
import 'package:flutter/material.dart';
|
||
|
|
import 'package:flutter_localizations/flutter_localizations.dart';
|
||
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
||
|
|
|
||
|
|
import 'app/router.dart';
|
||
|
|
|
||
|
|
void main() {
|
||
|
|
runApp(const ProviderScope(child: MeeziApp()));
|
||
|
|
}
|
||
|
|
|
||
|
|
class MeeziApp extends StatelessWidget {
|
||
|
|
const MeeziApp({super.key});
|
||
|
|
|
||
|
|
@override
|
||
|
|
Widget build(BuildContext context) {
|
||
|
|
return MaterialApp.router(
|
||
|
|
title: 'میزی',
|
||
|
|
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(0xFF6B4F3A)),
|
||
|
|
useMaterial3: true,
|
||
|
|
),
|
||
|
|
routerConfig: appRouter,
|
||
|
|
);
|
||
|
|
}
|
||
|
|
}
|