//Dialog box definitions
        private string Confirmation(string title, string message)
        {
            var dialog = new ConfirmationBoxViewModel(title, message);
            var result = _dialogService.OpenDialog(dialog);

            return(result);
        }
Example #2
0
        private string Otp()
        {
            var dialog = new Dialog.OTPBoxViewModel("", "Input your OTP code below:");
            var result = _dialogService.OpenDialog(dialog);

            return(result);
        }
 private void Alert(string title, string message)
 {
     var dialog = new AlertBoxViewModel(title, message);
     var result = _dialogService.OpenDialog(dialog);
 }