Michal Lyga

Results 2 comments of Michal Lyga

You have to implement the INavigationPopInterceptor interface in the ContentPage (class) to be able to handle the backbutton (the software and hardware both acts same using this package).

Example: ``` public partial class Page1 : ContentPage, INavigationPopInterceptor { public bool IsPopRequest { get; set; } public MainPageView() { InitializeComponent(); } public Task RequestPop() { return Task.Run(() => true);...