skip to Main Content

Flutter – How to validate that password and confirm password are the same?

I'm building a Flutter app and I have this setup, in the sign_up_page.dart I have a form field SignUpFormWidget and a button that confirms the form called AuthButtonWidget: SignUpFormWidget( formKey: _formKey, nameController: _nameController, emailController: _emailController, passwordController: _passwordController, confirmPasswordController: _confirmPasswordController, ),…

VIEW QUESTION
Back To Top
Search