1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2025-01-06 03:27:17 +03:00

examples/hello: Also test password text input

This commit is contained in:
Samuel Dionne-Riel 2022-10-16 18:45:58 -04:00
parent 650e3b645b
commit d48e38fe7e

View File

@ -27,6 +27,20 @@ module GUI
end
end
add_textarea().tap do |ta|
ta.set_pwd_mode(true)
on_click = ->() do
puts "clicked"
end
ta.on_submit = ->(value) do
puts "submitted #{value.inspect}"
puts " -> get_text: #{ta.get_text().inspect}"
end
ta.on_modified = ->(value) do
puts "modified #{value.inspect}"
end
end
# Add a toggle switch
@switch = add_switch(
"Toggle switch",