Firebase Auth
Install
Section titled โInstallโImport firebase_blocsync_authentication_provider
flutter pub add firebase_blocsync_authentication_provider
Configure
Section titled โConfigureโConfigure Blocsync with Firebase Auth
import 'package:blocsync/blocsync.dart';import 'package:firebase_auth/firebase_auth.dart';import 'package:firebase_blocsync_authentication_provider/firebase_blocsync_authentication_provider.dart';
void main() async { WidgetsFlutterBinding.ensureInitialized();
// Setup Firebase await Firebase.initializeApp( options: DefaultFirebaseOptions.currentPlatform, );
// Configure Blocsync with Firebase Auth BlocSyncConfig.authProvider = FirebaseAuthProvider();
runApp(MyApp());}