Expected it to hide all Title & AuthAction, but it hides only 'AuthAction'
Actual Behavior
Only hides 'AuthAction' & not Title - "Sing in/ Register"
Before
After (expected to hide text - "Sign in")
Before
After (expected to hide text - "Register")
Additional Information
Can be corrected by-
In Class _LoginViewState : var _showTitle can be set to widget.showAuthActionSwitch instead of widget.showTitle which has default value of true and no option to set any other value
Is there an existing issue for this?
What plugin is this bug for?
Firebase UI Auth
What platform(s) does this bug affect?
Android
List of dependencies used.
flutter pub deps -s list
Steps to reproduce
Just switch showAuthActionSwitch:
true
to showAuthActionSwitch:false
Expected Behavior
Expected it to hide all
Title
&AuthAction
, but it hides only 'AuthAction'Actual Behavior
Only hides 'AuthAction' & not Title - "Sing in/ Register"
Additional Information
Can be corrected by-
In Class
_LoginViewState
: var_showTitle
can be set towidget.showAuthActionSwitch
instead ofwidget.showTitle
which has default value oftrue
and no option to set any other value