Example #1
0
 public virtual void BindCloudPreferencesView(ICloudPreferencesView view)
 {
     _cloudPreferencesView = view;
     _cloudPreferencesPresenter = Bootstrapper.GetContainer().Resolve<ICloudPreferencesPresenter>();
     _cloudPreferencesPresenter.BindView(view);
     _cloudPreferencesView.OnViewDestroy = (view2) =>
     {
         _cloudPreferencesPresenter.ViewDestroyed();
         _cloudPreferencesPresenter = null;
         _cloudPreferencesView = null;
     };            
 }
Example #2
0
        public virtual void CreateCloudPreferencesView()
        {
            if(_cloudPreferencesView == null)
                _cloudPreferencesView = Bootstrapper.GetContainer().Resolve<ICloudPreferencesView>();

            PushTabView(MobileNavigationTabType.More, _cloudPreferencesView);
        }