From: http://doc.qt.io/qt-5/qml-qtquick-controls-tabview.html#details
TabView
{
Tab {
title: "Red"
Rectangle { color: "red" }
}
Tab {
title: "Blue"
Rectangle { color: "blue" }
}
Tab {
title: "Green"
Rectangle { color: "green" }
}
}
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