
Android/iOS Native Dialogs with Editorダイアログ
Protorius42
$4.99
$5.00
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've added support for HTML links and formatted text in the native dialog! You can now tap on links to open them directly. This new feature is available on both platforms.For Android™ users, it's now possible to close a dialog box by tapping outside of it.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}});}