1. Add new APIs to README and samples. 2. Added Birthdays widget

This commit is contained in:
Evgeny
2024-04-27 08:54:40 +04:00
parent 195d205a93
commit 28e0e9baf5
4 changed files with 132 additions and 4 deletions

View File

@@ -0,0 +1,9 @@
-- on_resume_when_folding = "true"
local counter = 0
function on_resume()
counter = counter+1
ui:show_text("refresh times: "..counter)
ui:show_toast("on_resume called")
end