3
0
mirror of https://github.com/britzl/monarch.git synced 2025-09-30 03:22:23 +02:00

Moved advanced example to subfolder. Added basic example.

This commit is contained in:
Björn Ritzl
2021-04-26 22:47:37 +02:00
parent a19bdd78e8
commit 398e78670f
31 changed files with 551 additions and 24 deletions

View File

@@ -0,0 +1,12 @@
local monarch = require "monarch.monarch"
function init(self)
msg.post(".", "acquire_input_focus")
msg.post("#", "show_screen1")
end
function on_message(self, message_id, message, sender)
if message_id == hash("show_screen1") then
monarch.show("screen1")
end
end