Great tutorial Joel! To resend the verification email you can also use this custom action to avoid passing the passwords as page parameters: "// Automatic FlutterFlow imports import '/backend/schema/structs/index.dart'; import '/backend/schema/enums/enums.dart'; import '/backend/supabase/supabase.dart'; import '/actions/actions.dart' as action_blocks; import '/flutter_flow/flutter_flow_theme.dart'; import '/flutter_flow/flutter_flow_util.dart'; import '/custom_code/actions/index.dart'; // Imports other custom actions import '/flutter_flow/custom_functions.dart'; // Imports custom functions import 'package:flutter/material.dart'; // Begin custom action code // DO NOT REMOVE OR MODIFY THE CODE ABOVE! Future resendVerificationEmail(String email) async { try { final supabase = SupaFlow.client; await supabase.auth.resend( type: OtpType.signup, email: email, ); return null; } on AuthException catch (e) { return e.message; } on AuthException catch (e) { return "Error: ${e.message}"; } catch (e) { return "Unexpected error: $e"; } }"
@just_xolotl13 күн бұрын
Awesome! That’s a better solution thanks for that!
@userer23hhccyiyfiugiutf3 ай бұрын
good tutorial please try to do a tutorial on how can we add the alreardy view functionality on a sent messages using supabase and flutterflow
@just_xolotl3 ай бұрын
Thanks for the suggestion
@jimvh75573 ай бұрын
Absolutely perfect! Thank you 🙏😊
@Mogizen3 ай бұрын
You have the best content! Thank you.
@mazenalsakkaf2 ай бұрын
This is super cool!
@just_xolotl2 ай бұрын
Thanks!
@impossibleharish3 ай бұрын
Thanks. for some reason, the token validation kept failing even with the latest token. Not sure what is missing. So, I reverted back to old files. felt exhausted.
@just_xolotl3 ай бұрын
Hope you managed to solve it.
@pierremusa96783 ай бұрын
great stuff🥳
@just_xolotl3 ай бұрын
Thanks!
@akimongush2 ай бұрын
Hi Joel, I've tried this for my app and now I'm getting "Database error saving new user". I can't really find the root problem of it😥
@just_xolotl2 ай бұрын
Maybe you can check out this thread: github.com/orgs/supabase/discussions/13043
@isaacjohnston70222 ай бұрын
What happens if the user starts the sign up process, receives the email, but doesn't complete account creation and then come back later to login?
@just_xolotl2 ай бұрын
Then the user would be brought back to the sign in/sign up page. If the user tries to sign in, it wouldn’t work. If the user tries to create an account again, they will be redirected back to verify page
@arafatrahman71503 ай бұрын
Hello bro, need a help. I have a idea to realtime chat app. In the real time chat app, new user only see to add people and than text massege. please make a video with this please