1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-06 18:43:43 +00:00

Focus input when cell tapped.

This commit is contained in:
Kyle Spearrin
2016-07-04 22:35:49 -04:00
parent 2d5d9fd113
commit 2712ae10e6
5 changed files with 21 additions and 12 deletions

View File

@@ -36,10 +36,17 @@ namespace Bit.App.Controls
stackLayout.Children.Add(Label);
stackLayout.Children.Add(Picker);
Tapped += FormPickerCell_Tapped;
View = stackLayout;
}
public Label Label { get; private set; }
public ExtendedPicker Picker { get; private set; }
private void FormPickerCell_Tapped(object sender, EventArgs e)
{
Picker.Focus();
}
}
}