I have 2 RichTextLabels (username and account) inside my VBoxContainer and I want them to be right below each other. But when placing them, it is always spacing them far out, utilising the full height of the container.
From SwiftUI I know the concept of a Spacer that you can put below the last item to push it all to the top. Is there something similar here or am I thinking it wrong?
In the end I want to have x-many labels with different font sizes below each other where some labels are single line and some are multi-line based on dynamic content.
I have played with setting the VBoxContainer's min height value to something like 40px but that only works if there is a static number of labels and content.