qmlfrontend/Page1Form.ui.qml
author unc0rr
Sun, 24 Dec 2017 00:44:16 +0100
branchqmlfrontend
changeset 12858 0c6fb706f747
parent 12854 28cb18c5e712
child 12861 488782d9aba9
permissions -rw-r--r--
More refactoring in attempt to move away from frontlib

import QtQuick 2.7
import QtQuick.Controls 2.0
import QtQuick.Layouts 1.3

Item {
    property alias button1: button1

    RowLayout {
        anchors.horizontalCenter: parent.horizontalCenter
        anchors.topMargin: 20
        anchors.top: parent.top

        Button {
            id: button1
            text: qsTr("Run")
        }
    }
}