Newer
Older
package com.example.schedulerapp;
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.Label;
import javafx.scene.layout.BorderPane;
import javafx.stage.Stage;
public class ScheduleApp extends Application {
@Override
public void start(Stage stage) throws Exception {
// just for now, not sure if using fxml or not?
BorderPane root = new BorderPane();
Label hello = new Label("Testing :)");
root.setCenter(hello);
Scene scene = new Scene(root);
stage.setTitle("Schedule App");
stage.setScene(scene);
stage.show();
}
public static void main(String[] args) {
launch();
}
}