Main Text of this control

By default, or if set to null, no text is shown.

Property definitions

app $ TextView :: text
	# Main `Text` of this control
	#
	# By default, or if set to `null`, no text is shown.
	var text: nullable Text is writable, abstract, autoinit
lib/app/ui.nit:232,2--235,56

android :: ui $ TextView :: text
	redef fun text do return native.text.to_s
lib/android/ui/ui.nit:225,2--42

ios :: ui $ Label :: text
	redef fun text do return native.text.to_s
lib/ios/ui/ui.nit:281,2--42

linux :: ui $ Label :: text
	redef fun text do return native.text
lib/linux/ui.nit:271,2--37

ios :: ui $ CheckBox :: text
	redef fun text do return lbl.text
lib/ios/ui/ui.nit:338,2--34

linux :: ui $ CheckBox :: text
	redef fun text do return native.text
lib/linux/ui.nit:321,2--37

ios :: ui $ TextInput :: text
	redef fun text do return native.text.to_s
lib/ios/ui/ui.nit:367,2--42

linux :: ui $ TextInput :: text
	redef fun text do return native.text
lib/linux/ui.nit:332,2--37

ios :: ui $ Button :: text
	redef fun text do return native.current_title.to_s
lib/ios/ui/ui.nit:411,2--51

linux :: ui $ Button :: text
	redef fun text do return native.text
lib/linux/ui.nit:244,2--37