what is the difference between `signIn(provider: P...
# flutter
j
what is the difference between
signIn(provider: Provider.google)
and
signInWithProvider(Provider.google)
im using that.. but im not getting any data back
b
use signInWithProvider. It's a flutter function that will show a WebView to log the user in
unfortunately we don't have native workflow yet, but we're working on it
j
i did eventually used sign in with provider. but that returns a bool. how do i get the user info or id after using the signInWithProvider function
after the completion of the signinwithprovider function. tried
final session = supabase.auth.session
which was also empty.
a
Any luck in this?