lit_firebase_auth
lit_firebase_auth copied to clipboard
[Enhancement] Add Name support during registration through email.
This is not an issue, this is more of an Enhancement/ Feature Request
Padding(
padding: const EdgeInsets.symmetric(vertical: 16),
child: NameTextFormField(
style: const TextStyle(
fontSize: 18,
color: Colors.white,
),
decoration: registerInputDecoration(hintText: 'Name')),
),
Padding(
padding: const EdgeInsets.symmetric(vertical: 16),
child: EmailTextFormField(
style: const TextStyle(
fontSize: 18,
color: Colors.white,
),
decoration: registerInputDecoration(hintText: 'Email')),
),
Padding(
padding: const EdgeInsets.symmetric(vertical: 16),
child: PasswordTextFormField(
style: const TextStyle(
fontSize: 18,
color: Colors.white,
),
decoration: registerInputDecoration(hintText: 'Password'),
),
),
Something like this, Would be useful to record the names of the user, who creates the account through email.
Yeah good suggestion. I'll add this as an option.
Yes please add this option, the only reason I can't use this library in my app.
It would be much better if this can be customized to add custom fields so that developers can add any extra fields.