Add new drawer scripts

This commit is contained in:
Evgeny
2023-07-14 21:18:05 +04:00
parent 082df0cd09
commit 92f6e0de16
22 changed files with 520 additions and 1 deletions

13
samples/search-widget.lua Normal file
View File

@@ -0,0 +1,13 @@
-- name = "Search"
-- description = "Simple widget to open search screen"
-- type = "widget"
-- author = "Evgeny Zobnin (zobnin@gmail.com)"
-- version = "1.0"
function on_resume()
ui:show_text("Open search")
end
function on_click(idx)
aio:do_action("search")
end