lit_firebase_auth icon indicating copy to clipboard operation
lit_firebase_auth copied to clipboard

[Enhancement] Add Name support during registration through email.

Open Imgkl opened this issue 5 years ago • 3 comments

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.

Imgkl avatar Aug 23 '20 14:08 Imgkl

Yeah good suggestion. I'll add this as an option.

funwithflutter avatar Aug 26 '20 05:08 funwithflutter

Yes please add this option, the only reason I can't use this library in my app.

pavel-birdy avatar Sep 22 '20 14:09 pavel-birdy

It would be much better if this can be customized to add custom fields so that developers can add any extra fields.

Purus avatar Feb 17 '21 16:02 Purus