aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/groupedAttachedLayout.qml
blob: 7cfe98d4f84b79694e70cbe4408cdfce35b1dd33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import QtQuick
import QtQuick.Layouts

Window {
    id: root

    Rectangle {
        id: redRect
    }

    Item {
        states: [
            State {
                PropertyChanges {
                    redRect.Layout.fillWidth: true
                }
            }
        ]
    }
}