Hi,

Can you please advise how wrapword would work when using Layouts instead of anchors.

Qt Code:
  1. RowLayout {
  2. Layout.fillWidth: true
  3.  
  4. Image {
  5. source: "order.png"
  6. }
  7.  
  8. Column {
  9. Layout.fillWidth: true
  10.  
  11. Text {
  12. id: item
  13. Layout.fillWidth: true
  14. text: "Text"
  15. }
  16.  
  17. Text {
  18. id: subItem
  19. Layout.fillWidth: true
  20. wrapMode: Text.WordWrap
  21. text: "Text info xxxxxxxxx"
  22. }
  23. }
  24. }
To copy to clipboard, switch view to plain text mode 

I want to wrap the subItem text.

Please advise.