From 7d5360f4b3539757d8288b5867c096c9290b894b Mon Sep 17 00:00:00 2001 From: Brian Lagunas Date: Wed, 27 May 2020 15:25:05 -0600 Subject: [PATCH] removed IMasterDetailPageOptions from sample --- e2e/Forms/src/HelloWorld/Views/MyMasterDetail.xaml.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/e2e/Forms/src/HelloWorld/Views/MyMasterDetail.xaml.cs b/e2e/Forms/src/HelloWorld/Views/MyMasterDetail.xaml.cs index e4106f7a76..82a69f6588 100644 --- a/e2e/Forms/src/HelloWorld/Views/MyMasterDetail.xaml.cs +++ b/e2e/Forms/src/HelloWorld/Views/MyMasterDetail.xaml.cs @@ -5,13 +5,13 @@ namespace HelloWorld.Views { [XamlCompilation(XamlCompilationOptions.Skip)] - public partial class MyMasterDetail : IMasterDetailPageOptions + public partial class MyMasterDetail //: IMasterDetailPageOptions { public MyMasterDetail() { InitializeComponent(); } - public bool IsPresentedAfterNavigation => Device.Idiom != TargetIdiom.Phone; + //public bool IsPresentedAfterNavigation => Device.Idiom != TargetIdiom.Phone; } }