Skip to content

Instantly share code, notes, and snippets.

@kasvith
Created February 18, 2019 06:26
Show Gist options
  • Save kasvith/d57f07e19459e8c21779f62955ab56ea to your computer and use it in GitHub Desktop.
Save kasvith/d57f07e19459e8c21779f62955ab56ea to your computer and use it in GitHub Desktop.
Bootstrapping JavaFX app
public class App extends Application {
public static void main(String[] args) {
launch(args);
}
@Override
public void start(Stage primaryStage) throws Exception {
primaryStage.setTitle("JavaFX Realtime Chart Demo");
// show the stage
primaryStage.show();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment