import 'dart:io'; import 'package:flutter/material.dart'; import 'package:flutter_android_app/presentation/home_page/bloc/bloc.dart'; import 'package:flutter_android_app/presentation/home_page/home_page.dart'; import 'package:flutter_android_app/presentation/like_bloc/like_bloc.dart'; import 'package:flutter_android_app/presentation/locale_bloc/locale_bloc.dart'; import 'package:flutter_android_app/presentation/locale_bloc/locale_state.dart'; import 'package:flutter_android_app/repositories/mock_repository.dart'; import 'package:flutter_bloc/flutter_bloc.dart'; import 'components/locale/l10n/app_localizations.dart'; void main() { runApp(const MyApp()); } class MyApp extends StatelessWidget { const MyApp({super.key}); @override Widget build(BuildContext context) { return BlocProvider( lazy: false, create: (context) => LikeBloc(), child: BlocProvider( lazy: false, create: (context) => LocaleBloc(Locale(Platform.localeName)), child: BlocBuilder( builder: (context, state) => MaterialApp( title: 'Cryptocurrency Exchange App', locale: state.currentLocale, localizationsDelegates: AppLocale.localizationsDelegates, supportedLocales: AppLocale.supportedLocales, theme: ThemeData( colorScheme: ColorScheme.fromSeed(seedColor: Colors.indigoAccent), useMaterial3: true, ), debugShowCheckedModeBanner: false, home: RepositoryProvider( lazy: true, create: (_) => MockRepository(), child: BlocProvider( lazy: false, create: (context) => HomeBloc(context.read()), child: const MyHomePage(title: 'Cryptocurrency Exchange'), ), ), ), ), ), ); } }