47 lines
1.5 KiB
Dart
47 lines
1.5 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter/services.dart';
|
|
import 'package:flutter_bloc/flutter_bloc.dart';
|
|
import 'package:flutter_screenutil/flutter_screenutil.dart';
|
|
import 'package:google_fonts/google_fonts.dart';
|
|
import 'all_bloc_poviders/all_bloc_providers.dart';
|
|
import 'core/app_router.dart';
|
|
|
|
Future<void> main() async {
|
|
WidgetsFlutterBinding.ensureInitialized();
|
|
await SystemChrome.setPreferredOrientations([
|
|
DeviceOrientation.portraitUp,
|
|
]);
|
|
SystemChrome.setSystemUIOverlayStyle(const SystemUiOverlayStyle(
|
|
statusBarColor: Colors.white,
|
|
statusBarIconBrightness: Brightness.dark,
|
|
statusBarBrightness: Brightness.light,
|
|
));
|
|
runApp(const MyApp());
|
|
}
|
|
|
|
class MyApp extends StatelessWidget {
|
|
const MyApp({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MultiBlocProvider(
|
|
providers: AllBlocProviders.providers(),
|
|
child: ScreenUtilInit( // ← Wrap here
|
|
designSize: const Size(390, 844), // ← iPhone 14 base size
|
|
minTextAdapt: true,
|
|
splitScreenMode: true,
|
|
builder: (context, child) => MaterialApp(
|
|
title: 'City Cards Partner',
|
|
debugShowCheckedModeBanner: false,
|
|
theme: ThemeData(
|
|
textTheme: GoogleFonts.poppinsTextTheme(
|
|
Theme.of(context).textTheme,
|
|
),
|
|
),
|
|
initialRoute: AppRouter.splashScreen,
|
|
onGenerateRoute: AppRouter.generateRoute,
|
|
),
|
|
),
|
|
);
|
|
}
|
|
} |