Probably a very simple question but I have not been able to figure it out. I have a ScrollPane (feat. Label) inside a VBox, inside a SplitPane: (Full fxml file at the bottom) When you expand the window or the split pane seperator horizontally, the Vbox automatically stretches to fit, the label re-centers appropriatelly, and the scroll pane expands to
Tag: pane
How to match parent AnchorPane to HBox in javafx
I am using JavaFX and I have HBox parent and AnchorPane child, so when I resize the parent, the child doesn’t resize, I wanna make the AnchorPane fill the parent (like match_parent in android). Answer You should set HGrow = ALWAYS in the AnchorPane.