list view has no "spacing" property #9403
Unanswered
StrongTheDev
asked this question in
Ideas
Replies: 2 comments
-
I feel like that should be a parameter too. ScrollView {
VerticalLayout {
spacing: 5px;
for item in []: Text {
text: item
}
}
} |
Beta Was this translation helpful? Give feedback.
0 replies
-
@Apollo-Roboto yeah, I used something similar too: ListView {
for num[index] in [1,2,3] : VerticalLayout {
Text {
text: @tr("Number {}", num);
}
Rectangle {height: 4px;}
}
} Though yours looks (and is) simpler |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Is it weird that a list view widget has no "spacing" property?
Beta Was this translation helpful? Give feedback.
All reactions