You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.
It seems that ColumnFlow is like a Repeater, so you can only give it one delegate. However I would like to layout multiple elements in the same ColumnFlow. Is this possible?
In my project I have 5 GroupBox that are generated from a list model using Repeaters, and another "hard-coded" GroupBox. When I used GridLayout, I was able to use a structure like this:
GridLayout {
Repeater {model: 5}
GroupBox { }
}
The excess empty spaces in some GroupBoxes looked ugly, so I used your ColumnFlow. However, now I have to use
RowLayout {
ColumnFlow {model: 5}
GroupBox { }
}
If the last GroupBox could be also placed in the ColumnFlow, I would be able to use 3 columns and make use of screen space more efficiently.
It seems that ColumnFlow is like a Repeater, so you can only give it one delegate. However I would like to layout multiple elements in the same ColumnFlow. Is this possible?
In my project I have 5 GroupBox that are generated from a list model using Repeaters, and another "hard-coded" GroupBox. When I used GridLayout, I was able to use a structure like this:
The excess empty spaces in some GroupBoxes looked ugly, so I used your ColumnFlow. However, now I have to use
If the last GroupBox could be also placed in the ColumnFlow, I would be able to use 3 columns and make use of screen space more efficiently.
My source code is here, if you are curious.
The text was updated successfully, but these errors were encountered: