package com.example.schedulerapp; import javafx.application.Application; import javafx.fxml.FXMLLoader; 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); FXMLLoader fxmlLoader = new FXMLLoader(ScheduleApp.class.getResource("mainView.fxml")); Scene scene = new Scene(fxmlLoader.load(),500,500); stage.setTitle("Schedule App"); stage.setScene(scene); stage.show(); } public static void main(String[] args) { launch(); } }