mirror of
https://github.com/bitwarden/android.git
synced 2024-12-24 18:08:26 +03:00
focus search bar on appear
This commit is contained in:
parent
93b59a75a4
commit
b0f86ea161
1 changed files with 6 additions and 0 deletions
|
@ -39,6 +39,12 @@ namespace Bit.iOS.Autofill
|
|||
await ((TableSource)TableView.Source).LoadItemsAsync(false, SearchBar.Text);
|
||||
}
|
||||
|
||||
public override void ViewDidAppear(bool animated)
|
||||
{
|
||||
base.ViewDidAppear(animated);
|
||||
SearchBar?.BecomeFirstResponder();
|
||||
}
|
||||
|
||||
partial void CancelBarButton_Activated(UIBarButtonItem sender)
|
||||
{
|
||||
if(FromList)
|
||||
|
|
Loading…
Reference in a new issue