Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 344 Bytes

labels.md

File metadata and controls

21 lines (14 loc) · 344 Bytes

Labels

Labels, as you may expect, are simple labels.

To create a simple label:

	Label label = new Label("Here is a label");

As with many other components, you can add a Label to a Panel after instantiation:

	Panel panel = new Panel();
	new Label("Surname").addTo(panel);

Screenshot