I am using the following alert in the mvvmcross, I wonder how could I able to add a cancel button.
var alertConfig = new AlertConfig {
Message = "it is not valid",
OkText = "Okely",
OnOk = () => { Debug.WriteLine("ok pressed"); }
};
Mvx.Resolve<IUserDialogs>().Alert(alertConfig);