test.qml

import QtQuick 2.0
import org.kde.kirigami 2.12 as Kirigami
Kirigami.ApplicationWindow {
Kirigami.SwipeNavigator {
anchors.fill: parent
largeHeader: false
Kirigami.Page {
icon: "edit-delete"
title: "Selected"
actions {
main: Kirigami.Action {
iconName: "dialog-cancel"
text: "Main Action Text"
checkable: true
shortcut: "Alt+S"
}
left: Kirigami.Action {
iconName: "go-previous"
text: "Left Action Text"
}
right: Kirigami.Action {
iconName: "go-next"
text: "Right Action Text"
}
}
}
Kirigami.Page {
title: "Inactive"
}
Kirigami.Page {
title: "Needs Attention"
needsAttention: true
}
Kirigami.Page {
title: "Progress"
progress: 0.5
}
}
}