1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | import QtQuick 2.4
import Ubuntu.Components 1.3
import Ubuntu.Components.ListItems 1.3 as ListItem
import "../images"
Column {
spacing: units.gu(1)
anchors {
margins: units.gu(2)
fill: parent
}
Item {
width: parent.width; height: units.gu(20)
UbuntuShape {
radius: "medium"
image: Image {
source: Qt.resolvedUrl("../images/UbuntuBeginnerAbout.png")
}
height: units.gu(15); width: height
anchors.centerIn: parent
}
}
}
|