summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets/declarative/GroupBox.qml
blob: a8ff5be353a3bf522ffd7938934f2d6330de72b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
ContentWrapper {
    id: Container; width: parent.width
    Rect {
        width: parent.width; color: "white"; pen.width: 2; pen.color: "#adaeb0"; radius: 10
        clip: false; height: contents.height
        VerticalLayout {
            id: layout; width: parent.width
            Content {}
        }
    }
}