ScrollView in SplitView : How to design Scrollbar in SplitView?
Solved
General and Desktop
-
Hello,
Trying to design Slitter with Scrollbar in it.. I used ScrollView .
When I used ScrollView inside SplitView then SplitView Properties like Layout miniwidth etc..is not working...
For Example:
anchors.fill: parent
orientation: Qt.Horizontal
ScrollView{
Rectangle{
id:fwindow
width: 150
Layout.minimumWidth: 80 // not working
Layout.maximumWidth: 500//not workingcolor: "lightgreen" Text{ text: "First window" anchors.centerIn: parent } }
}
}