#if USEFLYOUT using Serilog; using System; namespace TINK.View.MasterDetail { public class EmptyNavigationMasterDetail : INavigationMasterDetail { public bool IsGestureEnabled { set => Log.ForContext().Error($"Unexpected call of {nameof(IsGestureEnabled)} detected."); } public void ShowPage(Type p_oTypeOfPage, string p_strTitle = null) { Log.ForContext().Error($"Unexpected call of {nameof(ShowPage)} detected."); } } } #endif