2024-10-15 22:14:24 +04:00
|
|
|
import 'dart:io';
|
|
|
|
|
2024-09-10 19:00:47 +04:00
|
|
|
import 'package:flutter/material.dart';
|
2024-10-07 19:36:49 +04:00
|
|
|
import 'package:flutter_bloc/flutter_bloc.dart';
|
2024-10-15 22:14:24 +04:00
|
|
|
import 'package:pmu/components/locale/l10n/app_locale.dart';
|
2024-10-07 19:36:49 +04:00
|
|
|
import 'package:pmu/data/repositories/bbc_repository.dart';
|
|
|
|
import 'package:pmu/presentation/home_page/bloc/bloc.dart';
|
2024-09-23 20:37:45 +04:00
|
|
|
import 'package:pmu/presentation/home_page/home_page.dart';
|
2024-10-15 22:14:24 +04:00
|
|
|
import 'package:pmu/presentation/likes_bloc/likes_bloc.dart';
|
|
|
|
import 'package:pmu/presentation/locale_bloc/locale_bloc.dart';
|
|
|
|
import 'package:pmu/presentation/locale_bloc/locale_state.dart';
|
2024-09-10 19:00:47 +04:00
|
|
|
|
|
|
|
void main() {
|
|
|
|
runApp(const MyApp());
|
|
|
|
}
|
|
|
|
|
|
|
|
class MyApp extends StatelessWidget {
|
|
|
|
const MyApp({super.key});
|
|
|
|
|
2024-09-17 22:32:44 +04:00
|
|
|
@override
|
2024-09-10 19:00:47 +04:00
|
|
|
Widget build(BuildContext context) {
|
2024-10-15 22:14:24 +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,
|
|
|
|
theme: ThemeData(
|
|
|
|
colorScheme:
|
|
|
|
ColorScheme.fromSeed(seedColor: Colors.lightBlueAccent),
|
|
|
|
useMaterial3: true,
|
|
|
|
),
|
|
|
|
home: RepositoryProvider<BbcRepository>(
|
|
|
|
// чтобы ниже по дереву(в блок провайдере) был доступ к нашему репозиторию
|
|
|
|
lazy: true,
|
|
|
|
create: (_) => BbcRepository(),
|
|
|
|
child: BlocProvider<LikeBloc>(
|
|
|
|
// обернули чтобы сделать блок доступным внутри нашей страницы
|
|
|
|
lazy: false,
|
|
|
|
create: (context) => LikeBloc(),
|
|
|
|
child: BlocProvider<HomeBloc>(
|
|
|
|
lazy: false,
|
|
|
|
create: (context) => HomeBloc(context.read<BbcRepository>()),
|
|
|
|
child: const MyHomePage(),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
},
|
2024-10-07 19:36:49 +04:00
|
|
|
),
|
2024-09-10 19:00:47 +04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|