This commit is contained in:
Felipe
2024-02-20 17:11:43 -05:00
parent 29d18e93e0
commit e00772f58a
21 changed files with 386 additions and 279 deletions
@@ -197,8 +197,9 @@ class _SignUpScreenState extends State<SignUpScreen> {
SizedBox(
width: MediaQuery.of(context).size.width * 0.9,
child: MyTextField(
labelText: 'Nombre',
controller: nameController,
hintText: 'Name',
hintText: 'Ingresa tu nombre',
obscureText: false,
keyboardType: TextInputType.name,
prefixIcon: const Icon(CupertinoIcons.person_fill),
@@ -226,7 +227,9 @@ class _SignUpScreenState extends State<SignUpScreen> {
setState(() {
context.read<SignUpBloc>().add(SignUpRequired(
myUser, passwordController.text));
email: emailController.text,
password: passwordController.text,
));
});
}
},