12 lines
187 B
QML
12 lines
187 B
QML
import QtQuick 2.8
|
|
import QtQuick.Controls 2.2
|
|
import "../components"
|
|
|
|
Page {
|
|
id: root
|
|
header: GuhHeader {
|
|
text: "New rule"
|
|
onBackPressed: pageStack.pop()
|
|
}
|
|
}
|