Hide password or any content entered in this view?

Property definitions

app $ TextInput :: is_password=
	# Hide password or any content entered in this view?
	var is_password: nullable Bool is writable
lib/app/ui.nit:264,2--265,43

ios :: ui $ TextInput :: is_password=
	redef fun is_password=(value)
	do
		native.secure_text_entry = value or else false
		super
	end
lib/ios/ui/ui.nit:369,2--373,4

linux :: ui $ TextInput :: is_password=
	redef fun is_password=(value)
	do
		native.visibility = value != true
		super
	end
lib/linux/ui.nit:338,2--342,4

android :: ui $ TextInput :: is_password=
	redef fun is_password=(value)
	do
		native.is_password = value or else false
		super
	end
lib/android/ui/ui.nit:296,2--300,4