A qml having many rowlayouts, I want to add splitter between the rowlayouts in QML
Rowlayout{
}
Rowlayout{
}
//Add splitter between these two rows
A qml having many rowlayouts, I want to add splitter between the rowlayouts in QML
Rowlayout{
}
Rowlayout{
}
//Add splitter between these two rows
Copyright © 2021 Jogjafile Inc.
Be sure:
SplitViewis appropriately positioned/sized (e.g.anchors.fill: parent)SplitViewchildren has a non-zero size (e.g.SplitView.preferredWidth: 100)You can Try it Online!