示例#1
0
 public override void OnStart()
 {
     base.OnStart();
     _responsesAdapter?.PropogateActivityState(ActivityState.Started);
     // Not sure we need any of this
     if (_isInitialAppearance)
     {
         IsShowingDetails = false;
         OnDismissResponseDetails?.Invoke(this, new EventArgs());
         _isInitialAppearance = false;
     }
 }
示例#2
0
        public override void OnStart()
        {
            base.OnStart();

            // Not sure we need any of this
            if (_isInitialAppearance)
            {
                IsShowingDetails = false;
                OnDismissResponseDetails?.Invoke(this, new EventArgs());
                _isInitialAppearance = false;
            }
        }
        public override void ViewWillAppear(bool animated)
        {
            base.ViewWillAppear(animated);

            NavigationController.NavigationBar.TintColor           = Constants.Color.DarkBlue;
            NavigationController.NavigationBar.TitleTextAttributes = new UIStringAttributes {
                ForegroundColor = Constants.Color.DarkBlue
            };

            if (!isInitialAppearance)
            {
                IsShowingDetails = false;
                OnDismissResponseDetails?.Invoke(this, new EventArgs());
            }
        }