Does anyone know how to do this? I have configured the google console adding the supabase redirect domain (https://myproject.supabase.co/auth/v1/callback) and autorized domain (http://myproject.supabase.co) but still does not work. Is there anything else I need to do? Maybe add any flutterflow domain redirect...
Future signinWithGoogle() async {
// Add your function code here!
final supabase = SupaFlow.client;
final bool res = await supabase.auth.signInWithOAuth(Provider.google );
}