Hi just a point in the right direction rather than technical help. For a user login/ create user I want to display an error to let them now if invalid user or password etc. I can see the console catches the error but I cant see how to customise and display this.
I found the native.showAlert API and tried entering this into my config.lua
application ={ showRuntimeErrors = true,}
haven’t managed to get any customised popups with these although I do get runtime errors for example if I try to access a nil object (but these require fixing by me where as incorrect username password combo needs a nice message so the user knows whats going on)
Thanks
Im building on PC so have to go to phone to type email in forgot password box. When I do I get the error pop up box also on console(which shows invalid email address as should because its blank). Im using parse and when I add a valid password in the error popup box still appears (this works without it). When my handleRetrievePasswordButton event is called this is where I have configured the pop up for. I have tried to return event.errorMessage to return the text of the error but doesn’t seem to work.