Alert
更新时间:2019-11-28
此类封装alert相关功能
Public methods | |
---|---|
Alert | AlertDemo Demo. |
Alert | show_dialog(string msg) 显示对话窗 |
Alert | confirm_text(string msg) 设置确定按钮文字 |
Alert | cancel_text(string msg) 设置取消按钮文字 |
Alert | on_confirm(function func) 点击确定按钮后的回调 |
Alert | on_cancel(function func) 点击取消按钮后的回调 |
Alert | show_toast(string msg) 显示toast |
AlertDemo
Alert AlertDemo ()
demo示例
sample:
Alert():show_dialog("消息内容")
:title("提示")
:confirm_text("确认")
:cancel_text("取消")
:on_confirm(function()
ARLOG("Alert confirm")
end)
:on_cancel(function()
ARLOG("Alert cancel")
end)
:show()
Alert():show_toast("show")
Alert show_dialog(string msg)
显示对话窗
Parameters
- msg | string : string类型
Alert confirm_text(string msg)
设置确定按钮文字
Parameters
- msg | string : string类型
Alert cancel_text(string msg)
设置取消按钮文字
Parameters
- msg | string : string类型
Alert on_confirm(function func)
点击确定按钮后的回调
Parameters
- func | function : function类型
Alert on_cancel(function func)
点击取消按钮后的回调
Parameters
- func | function : function类型
Alert show_toast(string msg)
显示toast
Parameters
- msg | string : string类型
demo示例
sample:
Alert():show_toast("你好")