This repository has been archived on 2026-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
powersync-app/mea/ui/magic/ComposeEventDescriptorPage.qml
2018-05-17 13:52:32 +02:00

41 lines
775 B
QML

import QtQuick 2.6
import QtQuick.Layouts 1.2
import QtQuick.Controls 2.1
import "../components"
import Mea 1.0
Page {
id: root
property var device: null
header: GuhHeader {
text: qsTr("Select event")
}
ColumnLayout {
anchors.fill: parent
ColumnLayout {
visible: root.device == null
Layout.fillWidth: true
RowLayout {
Layout.fillWidth: true
RadioButton {
text: qsTr("A specific thing")
checked: true
}
RadioButton {
text: qsTr("A group of things")
}
}
ListView {
// Layout.fi
}
}
}
}