Thanks for this tutorial Brad, it´s really easy to understand, it was very helpful.
@CodeWithCypert10 ай бұрын
I’m really glad it was helpful for you!
@aayushpaigwar27 Жыл бұрын
Thankyou Brad for making this... Very nicely and easily explained...
@CodeWithCypert Жыл бұрын
Glad it was helpful!
@samuelgulliver88611 ай бұрын
Thanks for the video. Just one question - Do you need to handle errors when logging in using signInWithPassword? Likewise when signing up would there be an error for signing up with an already existing email?
@CodeWithCypert10 ай бұрын
Yes you do need to handle errors when signing up
@un_identifed9 ай бұрын
The named parameter 'password' isn't defined. Try correcting the name to an existing named parameter's name, or defining a named parameter with the name 'password'.dartundefined_named_parameter 2 positional arguments expected by 'signUp', but 0 found. Try adding the missing arguments.dartnot_enough_positional_arguments this is the error i am getting in the snippet below MaterialButton( onPressed: () async { final sm = ScaffoldMessenger.of(context); final authResponse = await supabase.auth.signUp( password: passwordController.text, email: emailController.text); sm.showSnackBar(SnackBar( content: Text("Logged In: ${authResponse.data!.email!}"))); }, Can u help me out?
@CodeWithCypert9 ай бұрын
Try to inspect the signUp method (if you’re in VsCode try command clicking it or control clicking it). This should show you the method signature. It’s quite possible that they’ve removed the named parameters in favor of positional parameters, in which case, converting the named parameters to positional should solve your issue
@un_identifed9 ай бұрын
@@CodeWithCypert yeah I did that actually and it worked, thanks though :)
Hi Brad, thanks so much for great tutorial on getting started . This has really helped me to get started with Supabase auth. Though this may be obvious to you, for someone getting started it'll be helpful if you could add things like how to manage "logged stages"/view members only page, and some other regular stuff like forgot password.. Still thanks again for great tutorial!
@CodeWithCypert5 ай бұрын
Glad it was helpful! That’s a great suggestion!
@priyanaik489611 ай бұрын
Thankyou for this video. Can you tell me what can be done if i just want to create log in and validate user from existing database in auth
@CodeWithCypert11 ай бұрын
I think I'd need a bit more context. Are you using Supabase? If not, you'd need to call whatever authorization server you may be using (Auth0, Okta, some hand rolled server, etc).
@priyanaik489611 ай бұрын
How can you make or edit profile page for the user after he logs in
@CodeWithCypert11 ай бұрын
In this case, you'd create a profile table in Supabase and build a Flutter UI to manage that profile. Then you'd use the Supabase package to write that data to the newly created table. Hope this helps!
@priyanaik489610 ай бұрын
@@CodeWithCypert thankyou
@CodeWithCypert10 ай бұрын
@@priyanaik4896happy to help! Let me know how it turns out!
@NextPexАй бұрын
can you please make a log in tutorial, thank you
@NextPexАй бұрын
nvm i didnt watch all the way
@CodeWithCypertАй бұрын
😁no worries
@MVCS_SpandanMN9 ай бұрын
why am getting platform error when i run this in android emulator.....
@CodeWithCypert9 ай бұрын
Couldn’t tell you unless I knew the errror, too. Mind sharing it here?