Fix input type (emailAddress to url) for the url form param in login page
This commit is contained in:
committed by
Dat H. Pham
parent
3bc27174ca
commit
6129d30817
@@ -95,7 +95,7 @@ class LoginView extends GetWidget<LoginController> {
|
|||||||
..key(Key('login_url_input'))
|
..key(Key('login_url_input'))
|
||||||
..onChange((value) => loginController.setUrlText(value))
|
..onChange((value) => loginController.setUrlText(value))
|
||||||
..textInputAction(TextInputAction.next)
|
..textInputAction(TextInputAction.next)
|
||||||
..keyboardType(TextInputType.emailAddress)
|
..keyboardType(TextInputType.url)
|
||||||
..textDecoration(LoginInputDecorationBuilder()
|
..textDecoration(LoginInputDecorationBuilder()
|
||||||
.setLabelText(AppLocalizations.of(context).prefix_https)
|
.setLabelText(AppLocalizations.of(context).prefix_https)
|
||||||
.setPrefixText(AppLocalizations.of(context).prefix_https)
|
.setPrefixText(AppLocalizations.of(context).prefix_https)
|
||||||
|
|||||||
Reference in New Issue
Block a user