1.19.0
New
- Parameter for initial values for checkbox-selections added to form API
- Now, a form can get an initialize listener, which is called after the creation of the form
new UiBooster().createForm("some form")
.addText("Some text here ... ", ".......")
.setInitListener(f -> System.out.println("This only called once"))
.show();