I will go straight to the point. I am building a server-client system that will basically be a cloud storage. Therefore, server will send client a list of files and folders at connection time and client will show them to the user.
What I am looking for is a JavaFx view that will show these contents in a desktop-like fashion: each of them with its own icon and a name under it.
I am confident there are better ways to do this than a complex ad-hoc GridView, but it seems I am unable to find them.
Hope someone will help me...
Thank you all in advance!
You should try to use flow pane of JavaFX, it will add children in flow. You can give icons to them on conditions like if you get the directory then give the folder icon else file icon like this.
Refer to this for the Flow Pane and Layout building
Example :
Try this example in which I have added 20 buttons in flow pane but you can change the component as you wish you can also set the padding of flow pane to give the spacing between the children's of flow pane