I'm working on a user signup flow in FlutterFlow and want to ensure emails are unique. I'd like to check if an entered email address already exists in my backend before creating a new user.
Users enter their email and password during signup.
I want to check if the email already exists in my database.
If it exists, I want to navigate them to a different page informing them about the duplicate email.
If the email doesn't exist, I want to proceed with creating the new user and navigate them to the onboarding page.