Clean up ContentView row layout and visuals

This commit is contained in:
2022-08-21 16:49:17 -04:00
parent b4b32064c4
commit a81a636d03
+17 -2
View File
@@ -15,6 +15,11 @@ TabView {
color: "#22282A" color: "#22282A"
Column { Column {
Row { Row {
spacing: 80
Item{
width: 0.1
height: 10
}
Repeater { Repeater {
property var provider: modelData property var provider: modelData
id: inProgressRepeater id: inProgressRepeater
@@ -23,15 +28,25 @@ TabView {
id: showColumn id: showColumn
property var show: inProgressRepeater.provider.getShow(modelData) property var show: inProgressRepeater.provider.getShow(modelData)
Image { Image {
height: 200 height: 300
width: 100 width: 300 * 0.68
source: showColumn.show.poster source: showColumn.show.poster
mipmap: true
anchors.horizontalCenter: parent.horizontalCenter
} }
Item {width: 1; height: 15}
Text { Text {
text: showColumn.show.title text: showColumn.show.title
color: "white"
font.pointSize: 15
anchors.horizontalCenter: parent.horizontalCenter
} }
Item {width: 1; height: 5}
Text { Text {
text: showColumn.show.year text: showColumn.show.year
color: "white"
font.pointSize: 15
anchors.horizontalCenter: parent.horizontalCenter
} }
} }
} }