Exemplo n.º 1
0
        public Task ShowAsync(CardPage card)
        {
            var cardPageWrapper = new CardPageWrapperPopup(card)
            {
                Title = card.Title,
            };

            _presentationContext.Push(cardPageWrapper);
            cardPageWrapper.Show();

            return Task.FromResult(true);
        }
        public Task ShowAsync(CardPage card)
        {
            var cardPageWrapper = new CardPageWrapperPopup(card)
            {
                Title = card.Title,
            };

            _presentationContext.Push(cardPageWrapper);
            cardPageWrapper.Show();

            return(Task.FromResult(true));
        }