-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
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
Spike: JavaFX Layouts #436
Comments
New features beyond
Important:
Reflow is the re-calculation of positions and dimensions of all elements. Commonly, if the user resizes the window, UI elements may be either resized or moved to better accommodate the new window size. For example, if the screen width decreases, elements may be stacked vertically on top of eachother; if the screen width increases, elements may move next to each other horizontally in rows. Other reflow triggers are:
Reflow can be expensive and blocks the UI thread. To mitigate reflow,
|
Compare and contrast the following layouts:
Pane, Region, Hbox/Vbox, Flowpane, Borderpane, Anchorpane
For each layout:
Can you align child nodes?
Can you resize?
If yes, how?
What is reflow and how does it affect the UI?
The text was updated successfully, but these errors were encountered: