firebase_bootstrap 1.0.0
firebase_bootstrap: ^1.0.0 copied to clipboard
A lightweight package for initializing Firebase services in Flutter apps with minimal setup.
example/firebase_bootstrap_example.dart
import 'package:firebase_bootstrap/firebase_bootstrap.dart';
import 'package:flutter/cupertino.dart';
void main() async {
await FirebaseInitializer.initFireBase();
// ...
runApp(MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return const Placeholder();
}
}