patrol 3.7.3 patrol: ^3.7.3 copied to clipboard
Powerful Flutter-native UI testing framework overcoming limitations of existing Flutter testing tools. Ready for action!
import 'package:animations/animations.dart';
import 'package:example/cubit/auth_cubit.dart';
import 'package:example/firebase_options.dart';
import 'package:example/handlers/notification_handler.dart';
import 'package:example/pages/home_page.dart';
import 'package:example/pages/push_notification/notification_success_page.dart';
import 'package:example/ui/style/colors.dart';
import 'package:firebase_auth/firebase_auth.dart';
import 'package:firebase_core/firebase_core.dart';
import 'package:firebase_messaging/firebase_messaging.dart';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:flutter_local_notifications/flutter_local_notifications.dart';
import 'package:geolocator/geolocator.dart';
import 'package:google_sign_in/google_sign_in.dart';
import 'package:provider/provider.dart';
const firebaseEnabled = String.fromEnvironment('FIREBASE_ENABLED') == 'true';
void main() async {
WidgetsFlutterBinding.ensureInitialized();
await initApp();
debugPrint('!Google sign in will not work when dev flavor used!');
runApp(const MyApp());
}
Future<void> initApp() async {
_setUpTheme();
if (firebaseEnabled) {
await _initFirebase();
await _askForLocationPermission();
}
}
void _setUpTheme() {
final mySystemTheme = SystemUiOverlayStyle.light
.copyWith(systemNavigationBarColor: PTColors.lcBlack);
SystemChrome.setSystemUIOverlayStyle(mySystemTheme);
}
Future<void> _initFirebase() async {
await Firebase.initializeApp(
options: DefaultFirebaseOptions.currentPlatform,
);
}
Future<void> _askForLocationPermission() => Geolocator.requestPermission();
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return BlocProvider<AuthCubit>(
create: (context) => AuthCubit(
firebaseEnabled ? FirebaseAuth.instance : null,
firebaseEnabled ? GoogleSignIn() : null,
)..init(),
child: Provider(
lazy: false,
create: (_) => NotificationHandler(
FlutterLocalNotificationsPlugin(),
firebaseEnabled ? FirebaseMessaging.instance : null,
)..init(() => Navigator.push(context, notificationRoute)),
child: MaterialApp(
theme: ThemeData.dark().copyWith(
pageTransitionsTheme: const PageTransitionsTheme(
builders: {
TargetPlatform.android: SharedAxisPageTransitionsBuilder(
transitionType: SharedAxisTransitionType.horizontal,
),
TargetPlatform.iOS: SharedAxisPageTransitionsBuilder(
transitionType: SharedAxisTransitionType.horizontal,
),
},
),
colorScheme: ColorScheme.fromSwatch(primarySwatch: Colors.grey),
primaryColor: PTColors.lcBlack,
canvasColor: PTColors.textDark,
textSelectionTheme: TextSelectionThemeData(
selectionColor: PTColors.lcYellow.withOpacity(0.5),
cursorColor: PTColors.textWhite,
selectionHandleColor: PTColors.lcYellow,
),
),
debugShowCheckedModeBanner: false,
title: 'Patrol Challenge',
home: const HomePage(),
),
),
);
}
}