2024-09-30 16:44:37 +04:00
|
|
|
import 'package:flutter/material.dart';
|
2024-11-12 00:23:53 +04:00
|
|
|
import 'package:flutter_app/data/repositories/got_repository.dart';
|
|
|
|
import 'package:flutter_app/presentation/home_page/bloc/bloc.dart';
|
|
|
|
import 'package:flutter_bloc/flutter_bloc.dart';
|
2024-10-17 12:15:47 +04:00
|
|
|
import 'presentation/home_page/home_page.dart';
|
2024-09-30 16:44:37 +04:00
|
|
|
|
|
|
|
void main() {
|
|
|
|
runApp(const MyApp());
|
|
|
|
}
|
|
|
|
|
|
|
|
class MyApp extends StatelessWidget {
|
|
|
|
const MyApp({super.key});
|
|
|
|
|
2024-10-17 12:15:47 +04:00
|
|
|
@override
|
2024-09-30 16:44:37 +04:00
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return MaterialApp(
|
2024-10-17 12:15:47 +04:00
|
|
|
title: '7 Kingdoms',
|
2024-10-17 10:40:53 +04:00
|
|
|
theme: ThemeData(
|
2024-10-17 12:15:47 +04:00
|
|
|
colorScheme: ColorScheme.fromSeed(seedColor: const Color.fromARGB(255, 20, 40, 150)),
|
|
|
|
useMaterial3: true,
|
2024-09-30 16:44:37 +04:00
|
|
|
),
|
2024-11-12 00:23:53 +04:00
|
|
|
home: RepositoryProvider<ThronesRepository>(
|
|
|
|
lazy: true,
|
|
|
|
create: (_) => ThronesRepository(),
|
|
|
|
child: BlocProvider<HomeBloc>(
|
|
|
|
lazy: false,
|
|
|
|
create: (context) => HomeBloc(context.read<ThronesRepository>()),
|
|
|
|
child: const MyHomePage(title: '7 Kingdoms'),
|
|
|
|
),
|
|
|
|
)
|
2024-09-30 16:44:37 +04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|