You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public class NewMain extends Application {
public static void main(String[] args) {
launch(args);
}
@Override
public void start(Stage primaryStage) {
Application.setUserAgentStylesheet(new Dracula().getUserAgentStylesheet());
var checkBox = new CheckBox("aaaaaaaaa");
var label = new Label("bbbbbbbbbbbb");
var toolBar = new ToolBar(checkBox, label);
toolBar.setMinHeight(40);
var root = new VBox(toolBar);
var scene = new Scene(root, 400, 200);
primaryStage.setScene(scene);
primaryStage.show();
}
}
This is how it looks in dracula:
This is how it looks in modena:
The text was updated successfully, but these errors were encountered:
This is the code:
This is how it looks in dracula:
This is how it looks in modena:
The text was updated successfully, but these errors were encountered: