Skip to content

Instantly share code, notes, and snippets.

View mackayn's full-sized avatar

Norman Mackay mackayn

View GitHub Profile
protected override bool OnBackButtonPressed()
{
if (BindingContext is IConfirmNavigationAsync)
{
if (BindingContext is ViewModelBase vm)
{
vm.ConfirmGoBackCommand.Execute();
}
return true;
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xamarin.Forms;
using Xamarin.Forms.Xaml;
namespace Foobar.Helpers
{