modal full screen

This commit is contained in:
kspearrin 2019-09-30 21:17:53 -04:00
parent 9dc01bca1c
commit 7c5b8c0e9f
4 changed files with 12 additions and 4 deletions

View File

@ -19,7 +19,9 @@ namespace Bit.iOS.Autofill
public CredentialProviderViewController(IntPtr handle)
: base(handle)
{ }
{
ModalPresentationStyle = UIModalPresentationStyle.FullScreen;
}
public override void ViewDidLoad()
{

View File

@ -8,7 +8,9 @@ namespace Bit.iOS.Core.Controllers
{
public ExtendedUITableViewController(IntPtr handle)
: base(handle)
{ }
{
ModalPresentationStyle = UIModalPresentationStyle.FullScreen;
}
public override void ViewWillAppear(bool animated)
{

View File

@ -8,7 +8,9 @@ namespace Bit.iOS.Core.Controllers
{
public ExtendedUIViewController(IntPtr handle)
: base(handle)
{ }
{
ModalPresentationStyle = UIModalPresentationStyle.FullScreen;
}
public override void ViewWillAppear(bool animated)
{

View File

@ -11,7 +11,9 @@ namespace Bit.iOS.Extension
{
public SetupViewController(IntPtr handle)
: base(handle)
{ }
{
ModalPresentationStyle = UIModalPresentationStyle.FullScreen;
}
public Context Context { get; set; }
public LoadingViewController LoadingController { get; set; }