mirror of
https://github.com/bitwarden/mobile
synced 2025-12-15 07:43:37 +00:00
more do once and other cleanup
This commit is contained in:
@@ -19,6 +19,7 @@ namespace Bit.App.Pages
|
||||
private readonly IStorageService _storageService;
|
||||
|
||||
private bool _showPassword;
|
||||
private string _email;
|
||||
|
||||
public LoginPageViewModel()
|
||||
{
|
||||
@@ -41,9 +42,14 @@ namespace Bit.App.Pages
|
||||
});
|
||||
}
|
||||
|
||||
public string Email
|
||||
{
|
||||
get => _email;
|
||||
set => SetProperty(ref _email, value);
|
||||
}
|
||||
|
||||
public Command TogglePasswordCommand { get; }
|
||||
public string ShowPasswordIcon => ShowPassword ? "" : "";
|
||||
public string Email { get; set; }
|
||||
public string MasterPassword { get; set; }
|
||||
public bool RememberEmail { get; set; }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user