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 via https://bintray.com/micheljung/maven/jfx-waimoto-theme/
implementation 'ch.micheljung.waitomo:jfx-waitomo-theme:0.2.0'
Not all components have been styled yet.
Works great with fxstage!