gocui
gocui copied to clipboard
Text Input box with password masking
How can I mask passwords? Thank you for the library.
I think that should be done in your application logic.
Considering v
is a gocui.View
:
v.Mask ^= '*'
This will mask this view's input with asterisks.