hide yubikey token cell for ios

This commit is contained in:
Kyle Spearrin 2018-05-24 22:40:02 -04:00
parent 3315704c14
commit 2e5ba0335d
1 changed files with 12 additions and 8 deletions

View File

@ -244,16 +244,20 @@ namespace Bit.App.Pages
Margin = new Thickness(0, 0, 0, 25)
};
TokenCell = new FormEntryCell("", isPassword: true, imageSource: "lock", useLabelAsPlaceholder: true);
TokenCell.Entry.ReturnType = ReturnType.Go;
var section = new TableSection(Helpers.GetEmptyTableSectionTitle())
{
RememberCell
};
var table = new TwoFactorTable(
new TableSection(Helpers.GetEmptyTableSectionTitle())
{
TokenCell,
RememberCell
});
if(Device.RuntimePlatform != Device.iOS)
{
TokenCell = new FormEntryCell("", isPassword: true, imageSource: "lock",
useLabelAsPlaceholder: true);
TokenCell.Entry.ReturnType = ReturnType.Go;
section.Insert(0, TokenCell);
}
var table = new TwoFactorTable(section);
var layout = new RedrawableStackLayout
{
Children = { instruction, image, table, anotherMethodButton },