firebase_core 1.10.0 firebase_core: ^1.10.0 copied to clipboard
Flutter plugin for Firebase Core, enabling connecting to multiple Firebase apps.
// ignore_for_file: require_trailing_commas
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// ignore_for_file: public_member_api_docs
// @dart=2.9
import 'dart:async';
import 'package:flutter/material.dart';
import 'package:firebase_core/firebase_core.dart';
void main() => runApp(const MyApp());
class MyApp extends StatelessWidget {
const MyApp({Key key}) : super(key: key);
String get name => 'foo';
FirebaseOptions get firebaseOptions => const FirebaseOptions(
appId: '1:448618578101:ios:0b650370bb29e29cac3efc',
apiKey: 'AIzaSyAgUhHU8wSJgO5MVNy95tMT07NEjzMOfz0',
projectId: 'react-native-firebase-testing',
messagingSenderId: '448618578101',
);
Future<void> initializeDefault() async {
FirebaseApp app = await Firebase.initializeApp(
options: const FirebaseOptions(
apiKey: 'AIzaSyAHAsf51D0A407EklG1bs-5wA7EbyfNFg0',
appId: '1:448618578101:ios:2bc5c1fe2ec336f8ac3efc',
messagingSenderId: '448618578101',
projectId: 'react-native-firebase-testing',
));
assert(app != null);
print('Initialized default app $app');
}
Future<void> initializeSecondary() async {
FirebaseApp app =
await Firebase.initializeApp(name: name, options: firebaseOptions);
assert(app != null);
print('Initialized $app');
}
void apps() {
final List<FirebaseApp> apps = Firebase.apps;
print('Currently initialized apps: $apps');
}
void options() {
final FirebaseApp app = Firebase.app(name);
final FirebaseOptions options = app?.options;
print('Current options for app $name: $options');
}
Future<void> delete() async {
final FirebaseApp app = Firebase.app(name);
await app?.delete();
print('App $name deleted');
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Firebase Core example app'),
),
body: Padding(
padding: const EdgeInsets.all(20),
child: Column(
mainAxisAlignment: MainAxisAlignment.spaceAround,
crossAxisAlignment: CrossAxisAlignment.stretch,
children: <Widget>[
ElevatedButton(
onPressed: initializeDefault,
child: const Text('Initialize default app')),
ElevatedButton(
onPressed: initializeSecondary,
child: const Text('Initialize secondary app')),
ElevatedButton(onPressed: apps, child: const Text('Get apps')),
ElevatedButton(
onPressed: options, child: const Text('List options')),
ElevatedButton(
onPressed: delete, child: const Text('Delete app')),
],
),
),
),
);
}
}