So I have an interface that allows me to call methods in my View.xaml.cs file
my method I am trying to implement is something like
public async Task<bool> ShowAlertWithFeedback(string title, string message, string accept, string cancel)
{
var temp = await base.DisplayAlert(title, message, accept, cancel);
return temp;
}
So then in my VM
I can call
IMyinterface.ShowAlertWithFeedback.Result
But my application keeps crashing on android.
Any ideas how to implement a method like this?