add no_html flag to show_text function

This commit is contained in:
Evgeny
2021-08-22 08:05:40 +03:00
parent f0c3f439a1
commit d90d4b3f2e
3 changed files with 2 additions and 2 deletions

19
community/net-file.lua Normal file
View File

@@ -0,0 +1,19 @@
-- name = "Network file"
function on_resume()
local args = aio:get_args()
if next(args) == nil then
ui:show_text("Tap to enter text file URL")
else
http:get(args[1])
end
end
function on_click()
aio:show_args_dialog()
end
function on_network_result(result)
ui:show_text(result)
end