Line 18 has no effect, since the item is as wide as its parent.
Line 24 is no anchor and, as previously explained, has no effect since the Text element has just enough width to hold the text.
Basically the same result as line 18.
In order to center something inside something else, the first needs to be smaller than the latter, or the latter needs to be bigger.
So what you have is
- a Text element that is just wide enough to display the text
- a Column element that is just as wide and positioned at 0/0 (default position)
What you want is
- a Column element that is larger than the Text, probably as wide as its parent
- either a Text element horizontally anchored in it or a Text element with the same width and using alignment
Cheers,
_
Bookmarks