Say I have a javafx application and I want to display e.g. a list with 15 images in this application. The images should always have the same size so if the user resizes the application, if there is not enough space to show e.g. 3 images next to each other, only 2 should be shown and the others move into a new "row".
Is there any container which applies such a behavior or do I have to implement it on my own? If so - any general tips?