We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
One of the next things we need, before we can start making use of form elements is layout panes.
The text was updated successfully, but these errors were encountered:
In JavaFX, the most common ones are probably VBox and HBox. Pretty easy to add those.
Sorry, something went wrong.
It will be interesting to come up with a good solution to apply constraints to the panel's children... For example, we could have something like this:
JavaFX
VBox vbox = new VBox(); ListView list = new ListView(); VBox.setVgrow(list, Priority.ALWAYS); vbox.getChildren().addAll(new Label("Names:"), list);
CeylonFX
VBox { Label("Names"), [ ListView(), [ vgrow -> always ] ] }
No branches or pull requests
One of the next things we need, before we can start making use of form elements is layout panes.
The text was updated successfully, but these errors were encountered: