How to align items in Row like space-between in css
-
I tried to find a similar topic, but couldn't find it.
I am trying to align 2 items start and end.
I used anchors stuff(anchors.right, anchors.margin) on my second item, but it didn't work.
What is a good way to align as follows;+-------------------------+ |Text ComboBox| +-------------------------+
Row { Text { anchors.verticalCenter: parent.verticalCenter ...... } ComboBox { width: 100 anchors.right: parent.right // it breaks whole alignment of Row block ...... } }