Hi Coronalabs,
what’s the reason you have chosen not to implement callbacks for email and sms? Are you aware that the keyboard stays open on Android after an email has been sent? If you had added a callback handler it would have been possible to solve that bug for us, but now we’ll have to wait for you to either fix the keyboard issue, or implement a callback handler.
…we’d prefer the callback instead of a keyboard fix, since there are several things we need to do when using native.showPopup(email|sms). For example, hiding banner ads when the popup is opened, and showing them when it is closed is one thing we cannot do at the moment without a callback.
local options = { body = "Some body (somebody)", listener = function(event) native.setKeyboardFocus(nil); showBannerAds() end } native.showPopup("sms", options)
Thanks!
