Skip to content

Latest commit

 

History

History
47 lines (33 loc) · 947 Bytes

File metadata and controls

47 lines (33 loc) · 947 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

repositories {
  mavenCentral()
}

dependencies {
  implementation ''ch.micheljung.waitomo:jfx-waitomo-theme:0.2.0'
}

Important

Not all components have been styled yet.

Other Projects

Works great with fxstage!