JavaFX FXML 组件填充父级 - 如 Android 中的 alignParent

JavaFX FXML component fill parent - like alignParent in Android

一个问题问了一百遍我知道,但似乎没有人知道该怎么做。

我有一个 BorderPane,我想将 Canvas 放在 BorderPane 的底部。我希望 Canvas 填满整个底部。我不想硬编码任何值。 有可能吗?

在 Android 中,我有类似 alignParentTop 等的东西。在 JavaFX 中它真的很不直观。

<BorderPane fx:controller="pl.mg.checkers.controller.GameController"
            xmlns:fx="http://javafx.com/fxml">
    <top>
        <HBox>
            <Button fx:id="leaveButton" text="Leave"/> 
        </HBox>
    </top>
    <bottom>
        <Canvas fx:id="canvas"/>
    </bottom>
</BorderPane>

问题是 Canvas 无法调整大小。参见 here 讨论和解决方案。