Closed dgruntz closed 6 years ago
The original start method looks as follows:
@Override public void start(Stage primaryStage) { Scene scene = new Scene(gridPane, 400,160); primaryStage.setScene(scene); primaryStage.show(); }
In this method a gridPane is used but this field is not defined. I have copied over the code from the book.
gridPane
thanks, keep them coming :)!
OK, will do that, but I first read through the whole book.
The original start method looks as follows:
In this method a
gridPane
is used but this field is not defined. I have copied over the code from the book.