Skip to content
Snippets Groups Projects
Commit 8e7c3b30 authored by eyan_'s avatar eyan_
Browse files
parents 64f066f4 4dd3ad05
No related branches found
No related tags found
No related merge requests found
...@@ -13,7 +13,7 @@ public class ScheduleApp extends Application { ...@@ -13,7 +13,7 @@ public class ScheduleApp extends Application {
public void start(Stage stage) throws Exception { public void start(Stage stage) throws Exception {
// just for now, not sure if using fxml or not? // just for now, not sure if using fxml or not?
BorderPane root = new BorderPane(); BorderPane root = new BorderPane();
Label hello = new Label("Testing :)"); Label hello = new Label("Testing again :)");
root.setCenter(hello); root.setCenter(hello);
FXMLLoader fxmlLoader = new FXMLLoader(ScheduleApp.class.getResource("mainView.fxml")); FXMLLoader fxmlLoader = new FXMLLoader(ScheduleApp.class.getResource("mainView.fxml"));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment