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

22 lines
502 B
QML

import QtQuick 2.5
import QtQuick.Controls 2.1
import QtQuick.Layouts 1.1
ActionDelegateBase {
id: root
height: layout.height + app.margins * 2
RowLayout {
id: layout
anchors { left: parent.left; right: parent.right; top: parent.top; margins: app.margins }
Label {
text: root.actionType.displayName
Layout.fillWidth: true
}
Button {
text: "Do it!"
onClicked: root.executeAction([])
}
}
}