MUISignUpCard constructor
const
MUISignUpCard({
- Key? key,
- required TextEditingController emailController,
- required TextEditingController passwordController,
- required TextEditingController confirmPasswordController,
- required Future onSignUpPressed(),
- Color bgColor = Colors.black,
- Color borderColor = Colors.grey,
- Color accentColor = Colors.white,
- double borderWidth = 1.5,
- double borderRadius = 12,
- double maxWidth = 430,
- List<
Widget> ? authButtons = const [], - 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,
});