Changes to package import statements to prevent errors when using FirebaseCrashlytics code (#1309)

pull/1312/head
Rich Hall 2 years ago committed by GitHub
parent 77cf69097a
commit e4d4d0f48d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -2,6 +2,11 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// Uncomment the following lines when enabling Firebase Crashlytics
// import 'dart:io';
// import 'package:firebase_core/firebase_core.dart';
// import 'firebase_options.dart';
import 'package:firebase_crashlytics/firebase_crashlytics.dart';
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
@ -34,7 +39,8 @@ import 'src/style/snack_bar.dart';
import 'src/win_game/win_game_screen.dart';
Future<void> main() async {
// Uncomment the following lines to enable Firebase Crashlytics.
// To enable Firebase Crashlytics, uncomment the following lines and
// the import statements at the top of this file.
// See the 'Crashlytics' section of the main README.md file for details.
FirebaseCrashlytics? crashlytics;

Loading…
Cancel
Save