MUISignUpCard constructor

const MUISignUpCard({
  1. Key? key,
  2. required TextEditingController emailController,
  3. required TextEditingController passwordController,
  4. required TextEditingController confirmPasswordController,
  5. required Future onSignUpPressed(),
  6. Color bgColor = Colors.black,
  7. Color borderColor = Colors.grey,
  8. Color accentColor = Colors.white,
  9. double borderWidth = 1.5,
  10. double borderRadius = 12,
  11. double maxWidth = 430,
  12. List<Widget>? authButtons = const [],
  13. required VoidCallback onLogInNowPressed,
})

Implementation

const MUISignUpCard({
  super.key,
  required this.emailController,
  required this.passwordController,
  required this.confirmPasswordController,
  required this.onSignUpPressed,
  this.bgColor = Colors.black,
  this.borderColor = Colors.grey,
  this.accentColor = Colors.white,
  this.borderWidth = 1.5,
  this.borderRadius = 12,
  this.maxWidth = 430,
  this.authButtons = const [],
  required this.onLogInNowPressed,
});