Example #1
0
        async Task CloseNotification()
        {
            if (Visible)
            {
                await _animator.AnimateOut(150).ConfigureAwait(true);

                Close();
            }
        }
Example #2
0
        async Task CloseDialog()
        {
            if (Visible)
            {
                await _animator.AnimateOut(150).ConfigureAwait(true);

                Close();
            }
        }
Example #3
0
        async Task CloseFlyout()
        {
            await _animator.AnimateOut(150).ConfigureAwait(true);

            Close();
        }