1
0
mirror of https://github.com/bitwarden/mobile synced 2026-02-24 08:33:12 +00:00

Wired up view page functionality. Expanded LabeledValueCell. Created custom group template for vault list page.

This commit is contained in:
Kyle Spearrin
2016-05-14 01:34:42 -04:00
parent d288116b39
commit 4e906f9370
12 changed files with 155 additions and 49 deletions

View File

@@ -23,6 +23,7 @@ namespace Bit.iOS.Controls
SetSelection(view);
UpdateRowHeight(view);
UpdateEstimatedRowHeight(view);
UpdateSeparatorColor(view);
}
}
@@ -87,5 +88,10 @@ namespace Bit.iOS.Controls
Control.EstimatedRowHeight = 0;
}
}
private void UpdateSeparatorColor(ExtendedTableView view)
{
Control.SeparatorColor = view.SeparatorColor.ToUIColor(UIColor.Gray);
}
}
}