Skip to content

Latest commit

 

History

History
43 lines (29 loc) · 960 Bytes

README.md

File metadata and controls

43 lines (29 loc) · 960 Bytes

JFX Waitomo Theme

Download

Screenshot

How to use:

public class Main {
  public static void main(String[] args) {
    DemoApplication.launch(DemoApplication.class, args);
  }

  public static class DemoApplication extends Application {

    @Override
    public void start(Stage primaryStage) {
      Scene scene = new Scene(new StackPane());
      WaitomoTheme.apply(scene);

      primaryStage.setScene(scene);
      primaryStage.show();
    }
  }
}

Get It Now

Get it via https://bintray.com/micheljung/maven/jfx-waimoto-theme/

implementation 'ch.micheljung.waitomo:jfx-waitomo-theme:0.2.0'

Important

Not all components have been styled yet.

Other Projects

Works great with fxstage!