aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quickcontrols2/accessibility/data/ordering/page.qml
blob: 8efafe323273e4d6408ec3ed73dea09a11105117 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import QtQuick
import QtQuick.Controls

Page {
    title: "Page"
    Accessible.role: Accessible.Pane

    header: Label {
        text: "Header"
    }

    footer: Label {
        text: "Footer"
    }

    Label {
        text: "Content item 1"
    }

    Label {
        text: "Content item 2"
    }
}