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

Flutter programing svg design

I designed a simple svg into this website and i'll to try programing that in flutter I have implemented the code using this approach: class AppbarBackgroundPainter extends CustomPainter { final Color color; AppbarBackgroundPainter(this.color); @override void paint(Canvas canvas, Size size) {…

VIEW QUESTION
Back To Top
Search