Exemple #1
0
        void ShowInner(bool isCurrentScope)
        {
            IsRunning = true;

            OnceInitializeAction?.Invoke(isCurrentScope);

            if (IsCurrentScope.HasValue && IsCurrentScope != isCurrentScope)
            {
                SetOverlayConstrants(isCurrentScope);
            }

            IsCurrentScope = isCurrentScope;

            _loadingView.RunPresentationAnimation();

            UIView.Animate(0.25, () => OverlayView.Alpha = 1f, () => { });
        }
        public override void OnStart()
        {
            base.OnStart();

            _loadingView?.RunPresentationAnimation();
        }