|
|
|
|
@ -72,6 +72,7 @@ namespace Bit.iOS.Core.Controllers
@@ -72,6 +72,7 @@ namespace Bit.iOS.Core.Controllers
|
|
|
|
|
UsernameCell.TextField.ReturnKeyType = UIReturnKeyType.Next; |
|
|
|
|
UsernameCell.Button.TitleLabel.Font = UIFont.FromName("bwi-font", 28f); |
|
|
|
|
UsernameCell.Button.SetTitle(BitwardenIcons.Generate, UIControlState.Normal); |
|
|
|
|
UsernameCell.Button.AccessibilityLabel = AppResources.GenerateUsername; |
|
|
|
|
UsernameCell.Button.TouchUpInside += (sender, e) => |
|
|
|
|
{ |
|
|
|
|
LaunchUsernameGeneratorFlow(); |
|
|
|
|
@ -86,6 +87,7 @@ namespace Bit.iOS.Core.Controllers
@@ -86,6 +87,7 @@ namespace Bit.iOS.Core.Controllers
|
|
|
|
|
PasswordCell.TextField.ReturnKeyType = UIReturnKeyType.Next; |
|
|
|
|
PasswordCell.Button.TitleLabel.Font = UIFont.FromName("bwi-font", 28f); |
|
|
|
|
PasswordCell.Button.SetTitle(BitwardenIcons.Generate, UIControlState.Normal); |
|
|
|
|
PasswordCell.Button.AccessibilityLabel = AppResources.GeneratePassword; |
|
|
|
|
PasswordCell.Button.TouchUpInside += (sender, e) => |
|
|
|
|
{ |
|
|
|
|
PerformSegue("passwordGeneratorSegue", this); |
|
|
|
|
|