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/guh-control/ui/magic/ComposeEventDescriptorPage.qml
Michael Zanetti 27b8946ff5 more work
2018-02-16 17:51:56 +01:00

41 lines
757 B
QML

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