Is there some guide or walkthrough to building a Scala + JavaFX desktop application?
I'm having hard time finding a good source and I am using IntelliJ IDEA as the IDE.
Even the most simplistic desktop hello world samples would help a lot, because I have little clue where to start.
Update: This is what I have now:
import javafx.application.Application
import javafx.scene.Scene
import javafx.scene.layout.StackPane
import javafx.stage.Stage
import javafx.scene.control.Label
class Test extends Application {
override def start(primaryStage: Stage) {
primaryStage.setTitle("Sup!")
val root = new StackPane
root.getChildren.add(new Label("Hello world!"))
primaryStage.setScene(new Scene(root, 300, 300))
primaryStage.show()
}
}
object Test {
def main(args: Array[String]) {
val t = new Test
t.start(new Stage)
}
}
Running it I get:
Exception in thread "main" java.lang.IllegalStateException: Not on FX application thread; currentThread = main
How can I get it to display the hello world window with the label?