For Horizon EDA, I need a container that reflows its children like words in a label. GtkFlowBox doesn’t cut as it arranges its children in a grid, so if one child is particularly wide, all other children in the same column will be as wide.
DzlColumnLayout
from libdazzle comes close, but operates the wrong way round as it arranges its children in a single row first.
Is there any existing container widget that does this, or do I have to roll my own based on DzlColumnLayout
?