Future<void> signInWithFacebook() async {
await supabase.auth.signInWithOAuth(
OAuthProvider.facebook,
authScreenLaunchMode:
kIsWeb ? LaunchMode.platformDefault : LaunchMode.externalApplication, // Launch the auth screen in a new webview on mobile.
);
}
Future<void> signInWithFacebook() async {
await supabase.auth.signInWithOAuth(
OAuthProvider.facebook,
authScreenLaunchMode:
kIsWeb ? LaunchMode.platformDefault : LaunchMode.externalApplication, // Launch the auth screen in a new webview on mobile.
);
}