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

View file

@ -244,16 +244,20 @@ namespace Bit.App.Pages
Margin = new Thickness(0, 0, 0, 25) Margin = new Thickness(0, 0, 0, 25)
}; };
TokenCell = new FormEntryCell("", isPassword: true, imageSource: "lock", useLabelAsPlaceholder: true); var section = new TableSection(Helpers.GetEmptyTableSectionTitle())
TokenCell.Entry.ReturnType = ReturnType.Go;
var table = new TwoFactorTable(
new TableSection(Helpers.GetEmptyTableSectionTitle())
{ {
TokenCell,
RememberCell 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 var layout = new RedrawableStackLayout
{ {
Children = { instruction, image, table, anotherMethodButton }, Children = { instruction, image, table, anotherMethodButton },