70 lines
2.6 KiB
Dart
70 lines
2.6 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_app/data/repositories/got_repository.dart';
|
|
import 'package:flutter_app/presentation/home_page/bloc/bloc.dart';
|
|
import 'package:flutter_app/presentation/home_page/home_page.dart';
|
|
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';
|
|
import 'package:flutter_bloc/flutter_bloc.dart';
|
|
import 'package:flutter_app/components/locale/l10n/app_locale.dart';
|
|
import 'presentation/home_page/home_page.dart';
|
|
|
|
void main() {
|
|
runApp(const MyApp());
|
|
}
|
|
|
|
class MyApp extends StatelessWidget {
|
|
const MyApp({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
// return MaterialApp(
|
|
// title: '7 Kingdoms',
|
|
// theme: ThemeData(
|
|
// colorScheme: ColorScheme.fromSeed(seedColor: const Color.fromARGB(255, 20, 40, 150)),
|
|
// useMaterial3: true,
|
|
// ),
|
|
// home: RepositoryProvider<ThronesRepository>(
|
|
// lazy: true,
|
|
// create: (_) => ThronesRepository(),
|
|
// child: BlocProvider<HomeBloc>(
|
|
// lazy: false,
|
|
// create: (context) => HomeBloc(context.read<ThronesRepository>()),
|
|
// child: const MyHomePage(title: '7 Kingdoms'),
|
|
// ),
|
|
// ));
|
|
|
|
return BlocProvider<LocaleBloc>(
|
|
lazy: false,
|
|
create: (context) => LocaleBloc((Locale(Platform.localeName))),
|
|
child: BlocBuilder<LocaleBloc, LocaleState>(
|
|
builder: (context, state) {
|
|
return MaterialApp(
|
|
title: '7 Kingdoms',
|
|
locale: state.currentLocale,
|
|
localizationsDelegates: AppLocale.localizationsDelegates,
|
|
supportedLocales: AppLocale.supportedLocales,
|
|
debugShowCheckedModeBanner: false,
|
|
theme: ThemeData(
|
|
colorScheme: ColorScheme.fromSeed(seedColor: const Color.fromARGB(255, 20, 40, 150)),
|
|
useMaterial3: true,
|
|
),
|
|
home: RepositoryProvider<ThronesRepository>(
|
|
lazy: true,
|
|
create: (_) => ThronesRepository(),
|
|
child: BlocProvider<LikeBloc>(
|
|
lazy: false,
|
|
create: (context) => LikeBloc(),
|
|
child: BlocProvider<HomeBloc>(
|
|
lazy: false,
|
|
create: (context) => HomeBloc(context.read<ThronesRepository>()),
|
|
child: const MyHomePage(title: "Федоренко Галина Юрьевна"),
|
|
),
|
|
),
|
|
));
|
|
}
|
|
),
|
|
);
|
|
}
|
|
}
|