reorganization

This commit is contained in:
Evgeny
2021-08-06 14:43:34 +03:00
parent 372ec8578d
commit 1e9b33eaea
52 changed files with 1044 additions and 20 deletions

View File

@@ -0,0 +1,11 @@
function on_resume()
apps_names = { "Telegram", "WhatsApp", "Google PLay" }
apps_pkgs = { "org.telegram.messenger.web", "com.whatsapp", "com.android.vending" }
apps_colors = { md_colors.light_blue_500, md_colors.green_500 }
ui:show_buttons(apps_names, apps_colors)
end
function on_click(idx)
system:open_app(apps_pkgs[idx])
end