facebook signInWithOAuth help

Is there an way to use the code provided by supabase but to open the facebok app for the user instead of web. More then likely the user will not be logged into web on their mobile device but have the facebook app installed.

I would assume externalApplication would open facebook app itself but it seems to load urls. I have also verified that kIsWeb is false.
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.
  );
}


I tried the alternative approach using
flutter_facebook_auth
however there are several issues concerning limited login vs old login methods that seem to be causing an issue in flutter.
Was this page helpful?