1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-12-24 16:38:22 +01:00

ios fixes

This commit is contained in:
Kyle Spearrin 2018-03-12 15:42:53 -04:00
parent 8fc95759ba
commit aaee0212f0
2 changed files with 3 additions and 1 deletions

View File

@ -45,7 +45,7 @@ namespace Bit.iOS.Core.Services
public Task<string> DisplayPromptAync(string title = null, string description = null, string text = null) public Task<string> DisplayPromptAync(string title = null, string description = null, string text = null)
{ {
// do nothing return Task.FromResult<string>(null);
} }
public void HideLoading() public void HideLoading()

View File

@ -341,6 +341,8 @@ namespace Bit.iOS.Services
input = x; input = x;
input.Text = text ?? string.Empty; input.Text = text ?? string.Empty;
}); });
var vc = GetPresentedViewController();
vc?.PresentViewController(alert, true, null);
return result.Task; return result.Task;
} }