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/actiondelegates/ActionDelegateNoParams.qml
2018-05-17 13:52:32 +02:00

22 lines
508 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: qsTr("Do it!")
onClicked: root.executeAction([])
}
}
}