NearHuscarl / flutter_login

Provides login screen with login/signup functionalities to help speed up development
MIT License
1.49k stars 796 forks source link

[FEATURE] Disable Sign Up and Forgot Passward Buttons #414

Closed pvsomar closed 1 year ago

pvsomar commented 1 year ago

I wanted to make a login page without a sign up button as accounts for this app will be made through an invitation only. I also wanted to removed the Forgot Password link/button since it is not part of the scope document for this phase of the development.

I would like a parameter in the FlutterLogin() constructor that takes a boolean and based of that, chooses whether or not to display the buttons that are not strictly neccessary for the log in.

Something like: FlutterLogin( showSignUpButton: false, showForgotPasswardButton: false .... // more parameters</br> )