Search code examples
javafxjavafx-8

What is the recommended way of adding a status bar to a JavaFX app?


Should I use the BorderPane layout and add a label at the bottom?

Is there a better way?


Solution

  • I ended up using a VBox for my usecase. But the BorderPane can work equally well - depends on your usecase. If others have better suggestions feel free to chime in.