Skip to content

Instantly share code, notes, and snippets.

@csells
Created December 8, 2021 02:16
Show Gist options
  • Save csells/74512c9f2a5ec9a38878e384f22e14bf to your computer and use it in GitHub Desktop.
Save csells/74512c9f2a5ec9a38878e384f22e14bf to your computer and use it in GitHub Desktop.
import 'package:firebase_core/firebase_core.dart';
import 'firebase_options.dart'; // generated via `flutterfire` CLI
Future<void> main() async {
// initialize firebase across all supported platforms
WidgetsFlutterBinding.ensureInitialized();
await Firebase.initializeApp(options: DefaultFirebaseOptions.currentPlatform);
runApp(MyApp());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment