1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-17 08:43:21 +00:00

Added length slider to password generation page

This commit is contained in:
Kyle Spearrin
2016-07-14 19:44:04 -04:00
parent afd22b6462
commit 83359b2d43
3 changed files with 41 additions and 1 deletions

View File

@@ -35,6 +35,7 @@ namespace Bit.iOS.Extension
public SwitchTableViewCell SpecialCell { get; set; } = new SwitchTableViewCell("!@#$%^&*");
public StepperTableViewCell MinNumbersCell { get; set; } = new StepperTableViewCell("Minimum Numbers", 1, 0, 5, 1);
public StepperTableViewCell MinSpecialCell { get; set; } = new StepperTableViewCell("Minimum Special", 1, 0, 5, 1);
public SliderTableViewCell LengthCell { get; set; } = new SliderTableViewCell("Length", 10, 5, 64);
public override void ViewWillAppear(bool animated)
{
@@ -113,7 +114,7 @@ namespace Bit.iOS.Extension
if(indexPath.Row == 0)
{
// TODO: Length slider
return _controller.LengthCell;
}
else if(indexPath.Row == 1)
{