Is this control enabled so the user can interact with it?

By default, or if set to null, the control is enabled.

Property definitions

app $ View :: enabled
	# Is this control enabled so the user can interact with it?
	#
	# By default, or if set to `null`, the control is enabled.
	var enabled: nullable Bool is writable, abstract, autoinit
lib/app/ui.nit:220,2--223,59

ios :: ui $ View :: enabled
	redef var enabled = null is lazy
lib/ios/ui/ui.nit:180,2--33

linux :: ui $ View :: enabled
	redef fun enabled do return native.sensitive
lib/linux/ui.nit:142,2--45

android :: ui $ View :: enabled
	redef fun enabled do return native.enabled
lib/android/ui/ui.nit:136,2--43

ios :: ui $ Button :: enabled
	redef fun enabled do return native.enabled
lib/ios/ui/ui.nit:414,2--43