2024-10-17 11:02:31 +04:00
|
|
|
import 'dart:io';
|
|
|
|
|
2024-09-19 19:10:50 +04:00
|
|
|
import 'package:flutter/material.dart';
|
2024-10-16 14:37:36 +04:00
|
|
|
import 'package:flutter_app/data/repositories/manga_repository.dart';
|
|
|
|
import 'package:flutter_app/presentation/home_page/bloc/bloc.dart';
|
2024-10-16 12:08:15 +04:00
|
|
|
import 'package:flutter_app/presentation/home_page/home_page.dart';
|
2024-10-17 11:02:31 +04:00
|
|
|
import 'package:flutter_app/presentation/like_bloc/like_bloc.dart';
|
|
|
|
import 'package:flutter_app/presentation/locale_bloc/locale_bloc.dart';
|
|
|
|
import 'package:flutter_app/presentation/locale_bloc/locale_state.dart';
|
2024-10-16 14:37:36 +04:00
|
|
|
import 'package:flutter_bloc/flutter_bloc.dart';
|
2024-09-19 19:10:50 +04:00
|
|
|
|
2024-10-17 11:02:31 +04:00
|
|
|
import 'components/locale/l10n/app_locale.dart';
|
|
|
|
|
2024-09-19 19:10:50 +04:00
|
|
|
void main() {
|
|
|
|
runApp(const MyApp());
|
|
|
|
}
|
|
|
|
|
|
|
|
class MyApp extends StatelessWidget {
|
|
|
|
const MyApp({super.key});
|
|
|
|
|
|
|
|
// This widget is the root of your application.
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2024-10-17 11:02:31 +04:00
|
|
|
return BlocProvider<LocaleBloc>(
|
|
|
|
lazy: false,
|
|
|
|
create: (context) => LocaleBloc(Locale(Platform.localeName)),
|
|
|
|
child: BlocBuilder<LocaleBloc, LocaleState>(
|
|
|
|
builder: (context, state) {
|
|
|
|
return MaterialApp(
|
|
|
|
title: 'Flutter Demo',
|
|
|
|
locale: state.currentLocale,
|
|
|
|
localizationsDelegates: AppLocale.localizationsDelegates,
|
|
|
|
supportedLocales: AppLocale.supportedLocales,
|
|
|
|
debugShowCheckedModeBanner: false,
|
|
|
|
theme: ThemeData(
|
|
|
|
colorScheme:
|
|
|
|
ColorScheme.fromSeed(seedColor: Colors.deepPurple),
|
|
|
|
useMaterial3: true,
|
|
|
|
),
|
|
|
|
home: RepositoryProvider<MangaRepository>(
|
|
|
|
lazy: true,
|
|
|
|
create: (_) => MangaRepository(),
|
|
|
|
child: BlocProvider<LikeBloc>(
|
|
|
|
lazy: false,
|
|
|
|
create: (context) => LikeBloc(),
|
|
|
|
child: BlocProvider<HomeBloc>(
|
|
|
|
lazy: false,
|
|
|
|
create: (context) =>
|
|
|
|
HomeBloc(context.read<MangaRepository>()),
|
|
|
|
child: const HomePage(),
|
|
|
|
),
|
|
|
|
)));
|
|
|
|
},
|
|
|
|
));
|
2024-09-19 19:10:50 +04:00
|
|
|
}
|
|
|
|
}
|