Index: sources/gui/qml/pages/MainHome.qml =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/gui/qml/pages/MainHome.qml (.../MainHome.qml) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/gui/qml/pages/MainHome.qml (.../MainHome.qml) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -38,25 +38,33 @@ ImageLogoD { id: _headerLogo } // Definitions + TitleText { id: _titleText + anchors.top: parent.top + anchors.topMargin: 200 //// ----- @LEAHIZED: Move to Variables.qml + width: parent.width + text : vDateTime.greeting + font.pixelSize: 40 //// ----- @LEAHIZED: Move to Variables.qml + + } Column { spacing: Variables.columnSpacing anchors.centerIn: parent - TitleText { id: _titleText - anchors.horizontalCenter: parent.horizontalCenter - width: parent.width - text : vDateTime.greeting - } - // TODO: Removed for phase 1 - // TouchRect { id : _startTreatmentRect - // anchors.horizontalCenter: parent.horizontalCenter - // text.text: qsTr("START TREATMENT") - // onClicked: startTreatment() - // } TouchRect { id : _createTreatmentRect anchors.horizontalCenter: parent.horizontalCenter - text.text: qsTr("CREATE TREATMENT") + text.text: qsTr("Create Treatment") onClicked: createTreatment() + width : 435 //// ----- @LEAHIZED: Move to Variables.qml + height : 92 //// ----- @LEAHIZED: Move to Variables.qml + pixelSize : 30 //// ----- @LEAHIZED: Move to Variables.qml } + TouchRect { id : _startTreatmentRect + anchors.horizontalCenter: parent.horizontalCenter + text.text: qsTr("Start Treatment") + onClicked: startTreatment() + width : 435 //// ----- @LEAHIZED: Move to Variables.qml + height : 92 //// ----- @LEAHIZED: Move to Variables.qml + pixelSize : 30 //// ----- @LEAHIZED: Move to Variables.qml + } } NotificationBarSmall { id: _notification