PMU-PIbd-32-Fedorenko-G-Y/flutter_app/lib/main.dart

34 lines
982 B
Dart
Raw Normal View History

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';
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});
@override
2024-09-30 16:44:37 +04:00
Widget build(BuildContext context) {
return MaterialApp(
title: '7 Kingdoms',
2024-10-17 10:40:53 +04:00
theme: ThemeData(
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
);
}
}