mirror of
https://github.com/NixOS/mobile-nixos.git
synced 2025-01-07 12:11:28 +03:00
examples/hello: Also test password text input
This commit is contained in:
parent
650e3b645b
commit
d48e38fe7e
@ -27,6 +27,20 @@ module GUI
|
|||||||
end
|
end
|
||||||
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
|
# Add a toggle switch
|
||||||
@switch = add_switch(
|
@switch = add_switch(
|
||||||
"Toggle switch",
|
"Toggle switch",
|
||||||
|
Loading…
Reference in New Issue
Block a user