Add url widget

This commit is contained in:
Evgeny
2023-06-14 20:02:27 +04:00
parent d66a798a99
commit c02e945309

9
samples/url-widget.lua Normal file
View File

@@ -0,0 +1,9 @@
local url = "https://aiolauncher.app"
function on_resume()
ui:show_text("Click me")
end
function on_click()
system:open_browser(url)
end