1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-16 16:23:29 +00:00

Remove UserDialogs plugin and dependencies for extension. Use custom/native dialogs for extension. Added modern http client to resolve TLS issues in extension. Dismiss and reload table for add site in extension.

This commit is contained in:
Kyle Spearrin
2016-07-09 15:23:54 -04:00
parent d61d3c201a
commit 4cb9488ee7
7 changed files with 75 additions and 46 deletions

View File

@@ -74,10 +74,17 @@ namespace Bit.iOS.Extension
if(addSiteController != null)
{
addSiteController.Context = Context;
addSiteController.Parent = this;
}
}
}
public void DismissModal()
{
DismissModalViewController(true);
TableView.ReloadData();
}
public class TableSource : UITableViewSource
{
private const string CellIdentifier = "TableCell";