21 lines
384 B
QML
21 lines
384 B
QML
import QtQuick 2.8
|
|
import QtQuick.Controls 2.1
|
|
import QtQuick.Layouts 1.2
|
|
import Mea 1.0
|
|
import "../components"
|
|
|
|
Page {
|
|
id: root
|
|
header: GuhHeader {
|
|
text: qsTr("Conditions")
|
|
onBackPressed: pageStack.pop()
|
|
}
|
|
|
|
property var stateEvaluator: null
|
|
|
|
StateEvaluatorDelegate {
|
|
width: parent.width
|
|
stateEvaluator: root.stateEvaluator
|
|
}
|
|
}
|