Supabase Provider
Install
Section titled “Install”Import supabase_blocsync_authentication_provider
flutter pub add supabase_blocsync_authentication_provider
Configure
Section titled “Configure”Configure Blocsync with Supabase Auth
import 'package:blocsync/blocsync.dart';import 'package:supabase_flutter/supabase_flutter.dart';import 'package:supabase_blocsync_authentication_provider/supabase_blocsync_authentication_provider.dart';
void main() async { WidgetsFlutterBinding.ensureInitialized();
await Supabase.initialize( url: 'https://your-project.supabase.co', anonKey: 'your-anon-key', );
BlocSyncConfig.authProvider = SupabaseAuthProvider();
runApp(MyApp());}