object Notification
Main object for Cordova notifications.
(js)
alert |
Show alert dialog. fun alert(message: String, title: String? = null, buttonLabel: String? = null, callback: () -> Unit): Unit |
(js)
beep |
Play a beep sound. fun beep(times: Int = 1): Unit |
(js)
confirm |
Show confirm dialog. fun confirm(message: String, title: String? = null, buttonLabels: List<String>? = null, callback: (Int) -> Unit): Unit |
(js)
prompt |
Show prompt dialog. fun prompt(message: String, title: String? = null, buttonLabels: List<String>? = null, defaultText: String? = null, callback: (PromptResponse) -> Unit): Unit |