41 lines
1013 B
Dart
41 lines
1013 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_app/data/repositories/manga_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_bloc/flutter_bloc.dart';
|
|
|
|
void main() {
|
|
runApp(const MyApp());
|
|
}
|
|
|
|
class MyApp extends StatelessWidget {
|
|
const MyApp({super.key});
|
|
|
|
// This widget is the root of your application.
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MaterialApp(
|
|
title: 'Flutter Demo',
|
|
theme: ThemeData(
|
|
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
|
|
useMaterial3: true,
|
|
),
|
|
home: RepositoryProvider<MangaRepository>(
|
|
lazy: true,
|
|
create: (_) => MangaRepository(),
|
|
child: BlocProvider<HomeBloc>(
|
|
lazy: false,
|
|
create: (context) => HomeBloc(context.read<MangaRepository>()),
|
|
child: const HomePage(),
|
|
),
|
|
)
|
|
);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|