Guest User

Untitled

a guest
Feb 22nd, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. 1-Install de package in each project
  2. 2-In the Android MainActivity init the plugin using UserDialogs.Init(this);
  3. 3-Add this code
  4.  
  5. var msg = String.Format("first, My Message");
  6.  
  7. var r = await UserDialogs.Instance.PromptAsync(msg, "Hello", "Ok", "Cancel", "", inputType: InputType.Default);
  8.  
  9. if (r.Ok != false && r.Text != "")
  10. {
  11.  
  12. }
Add Comment
Please, Sign In to add comment