56 lines
2.0 KiB
Dart
56 lines
2.0 KiB
Dart
import 'dart:io';
|
|
|
|
import 'package:app/components/locale/l10n/app_locale.dart';
|
|
import 'package:app/presentation/home_page/bloc/bloc.dart';
|
|
import 'package:app/presentation/home_page/home_page.dart';
|
|
import 'package:app/presentation/like_bloc/like_bloc.dart';
|
|
import 'package:app/presentation/locale_bloc/locale_bloc.dart';
|
|
import 'package:app/presentation/locale_bloc/locale_state.dart';
|
|
import 'package:app/repositories/potter_repository.dart';
|
|
import 'package:app/repositories/rick&morty_repositoty.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_bloc/flutter_bloc.dart';
|
|
|
|
void main() {
|
|
runApp(const MyApp());
|
|
}
|
|
|
|
class MyApp extends StatelessWidget {
|
|
const MyApp({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
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: const Color(0xFF7BA05B)),
|
|
useMaterial3: true,
|
|
),
|
|
home: RepositoryProvider<RickandMortyRepository>(
|
|
lazy: true,
|
|
create: (_) => RickandMortyRepository(),
|
|
child: BlocProvider<LikeBloc>(
|
|
lazy: false,
|
|
create: (context) => LikeBloc(),
|
|
child: BlocProvider<HomeBloc>(
|
|
lazy: false,
|
|
create: (context) => HomeBloc(context.read<RickandMortyRepository>()),
|
|
child: const MyHomePage(title: "Пучкина Анна Алексеевна!"),
|
|
),
|
|
),
|
|
));
|
|
}
|
|
),
|
|
);
|
|
}
|
|
}
|