Transport.qml: Worked a bit on the style and layout of the Public Transportation module, added logo images

This commit is contained in:
Oscar Andreasson 2015-07-23 20:37:52 -07:00
parent 646ea482e5
commit 07a904dd75
3 changed files with 76 additions and 48 deletions

BIN
Transport.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

View file

@ -43,6 +43,31 @@ Item {
}
}
RowLayout {
anchors.fill: parent
Rectangle {
id: logo
anchors.left: parent.left
anchors.right: parent.right
anchors.top: parent.top
height: 100
color: "black"
Image {
source: "Transport.png"
anchors.fill: parent
fillMode: Image.PreserveAspectFit
}
}
Rectangle {
anchors.left: parent.left
anchors.right: parent.right
anchors.top: logo.bottom
anchors.bottom: parent.bottom
TableView {
id: tableView
anchors.fill: parent
@ -105,4 +130,7 @@ Item {
width: (tableView.width / 6)
}
}
}
}
}

BIN
Transport.xcf Normal file

Binary file not shown.