Native Dialogs for Android & iOS with Editor dialog
Protorius42
$5.49
$5.50
1%OFF
(no ratings)
Jump AssetStore
Native Dialogs for Android™ & iOS™ with Editor dialog for Unity™You can fast and easily show native alert dialogs with buttons such as alert, confirmation, question, and 3 buttons dialogs. We hope the asset will save you lots of time and energy and you can focus on game/application development.### Featureseasy to use and implement, source code includedno dependencieserror safe handlingusing async/await pattern for API methodsunity editor dialog for unity runtimewell-tested code### How to usehttps://gist.github.com/protorius42/d9175bdfc62629c33b4927f844e2eb6dusing (NativeAlertDialog dialog = new NativeAlertDialog()){DialogParams dialogParams = new DialogParams("<>", "<>");dialog.ShowNativeDialogAsync(dialogParams).ContinueWith(task =>{if (task.Result.Item2 != ButtonErrorCode.NoError){//your error handling here}else{//check your the pressed button here}});}