From: http://doc.qt.io/qt-5/qml-qtquick-co...w.html#details

Qt Code:
  1. TabView
  2. {
  3. Tab {
  4. title: "Red"
  5. Rectangle { color: "red" }
  6. }
  7. Tab {
  8. title: "Blue"
  9. Rectangle { color: "blue" }
  10. }
  11. Tab {
  12. title: "Green"
  13. Rectangle { color: "green" }
  14. }
  15. }
To copy to clipboard, switch view to plain text mode 
These tabs get by default shown in a horizontal bar. How to display them in separate rows?

Like this:
Tab1
Tab2
Tab3

Rather than:
Tab1 Tab2 Tab3