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/actiondelegates/ActionDelegateFallback.qml
2018-02-12 14:47:41 +01:00

24 lines
588 B
QML

import QtQuick 2.5
import QtQuick.Controls 2.1
import QtQuick.Layouts 1.1
ActionDelegateBase {
id: root
height: columnLayout.height + app.margins * 2
ColumnLayout {
id: columnLayout
anchors { left: parent.left; right: parent.right; top: parent.top; margins: app.margins }
Label {
Layout.fillWidth: true
text: actionType.displayName
}
Label {
Layout.fillWidth: true
text: "Note: This action type has not been implemented yet"
font.pixelSize: app.smallFont
}
}
}