Usage
using VoxelBusters.EssentialKit;Alert Dialog
AlertDialog dialog = AlertDialog.CreateInstance();
dialog.Title = "Title";
dialog.Message = "Message";
dialog.AddButton("Yes", () => {
Debug.Log("Yes button clicked");
});
dialog.AddCancelButton("No", () => {
Debug.Log("Cancel button clicked");
});
dialog.Show(); //Show the dialogDate Picker
Last updated