|
|
|
@ -29,15 +29,30 @@ Page {
|
|
|
|
|
|
|
|
|
|
width: page.width
|
|
|
|
|
spacing: Theme.paddingLarge
|
|
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
|
id: baseRect
|
|
|
|
|
color: "red"
|
|
|
|
|
width: page.width
|
|
|
|
|
height: page.height/2
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
PageHeader {
|
|
|
|
|
title: qsTr("UI Template")
|
|
|
|
|
}
|
|
|
|
|
Label {
|
|
|
|
|
x: Theme.horizontalPageMargin
|
|
|
|
|
text: qsTr("Hello Sailors")
|
|
|
|
|
text: qsTr("Argh")
|
|
|
|
|
color: Theme.secondaryHighlightColor
|
|
|
|
|
font.pixelSize: Theme.fontSizeExtraLarge
|
|
|
|
|
}
|
|
|
|
|
TextField {
|
|
|
|
|
id: secondField
|
|
|
|
|
width: parent.width
|
|
|
|
|
placeholderText: "Enter text"
|
|
|
|
|
font.pixelSize: Theme.fontSizeLarge
|
|
|
|
|
font.bold: true
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|