Appearance
Text
On this page you find the documentation for the GUI Component Text
.
Introduction
The Text
component is a view showing some text to the user.
Example
You pass the text to the component as its main component.
Appearance
Text
#On this page you find the documentation for the GUI Component Text
.
The Text
component is a view showing some text to the user.
Example
class StartPage extends Page{
createGui(){
return Text(`Here is some text!`)
}
}
class MyApp extends App{
createStartPage(){
return new StartPage()
}
}
You pass the text to the component as its main component.