Skip to content

1.19.0

Compare
Choose a tag to compare
@Milchreis Milchreis released this 15 Apr 14:20
· 113 commits to master since this release
11570af

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();