public MvxFormsAndroidViewPresenter(IEnumerable <Assembly> androidViewAssemblies, MvxFormsApplication formsApplication) : base(androidViewAssemblies)
 {
     FormsApplication = formsApplication ?? throw new ArgumentNullException(nameof(formsApplication), "MvxFormsApplication cannot be null");
 }
Exemplo n.º 2
0
 public CustomPresenter(MvxFormsApplication formsApplication)
 {
     FormsApplication = formsApplication
                        ?? throw new ArgumentNullException(nameof(formsApplication), "MvxFormsApp cannot be null");
 }
Exemplo n.º 3
0
 public MvxFormsPagePresenter(MvxFormsApplication formsApplication)
 {
     FormsApplication = formsApplication;
 }
 public MvxFormsDroidMasterDetailPagePresenter(MvxFormsApplication formsApplication)
     : base(formsApplication)
 {
 }
 public MvxFormsDroidPagePresenter(MvxFormsApplication formsApplication)
     : base(formsApplication)
 {
 }
 public MvxFormsUwpPagePresenter(IMvxWindowsFrame rootFrame, MvxFormsApplication formsApplication)
     : base(formsApplication)
 {
     _rootFrame = rootFrame;
 }
Exemplo n.º 7
0
 public CustomPresenter(UIWindow window, MvxFormsApplication mvxFormsApp)
     : base(window, mvxFormsApp)
 {
 }
 public MvxFormsAndroidViewPresenter(IEnumerable <Assembly> androidViewAssemblies, MvxFormsApplication formsApplication) : this(androidViewAssemblies)
 {
     FormsApplication          = formsApplication ?? throw new ArgumentNullException(nameof(formsApplication), "MvxFormsApplication cannot be null");
     FormsApplication.MainPage = new MvxNavigationPage();
 }
Exemplo n.º 9
0
 public MvxFormsIosViewPresenter(IUIApplicationDelegate applicationDelegate, UIWindow window, MvxFormsApplication formsApplication) : this(applicationDelegate, window)
 {
     FormsApplication = formsApplication ?? throw new ArgumentNullException(nameof(formsApplication), "MvxFormsApplication cannot be null");
 }
Exemplo n.º 10
0
 protected MvxFormsPagePresenter(MvxFormsApplication formsApplication)
 {
     FormsApplication = formsApplication ?? throw new ArgumentNullException(nameof(formsApplication), "MvxFormsApp cannot be null");
 }