From a81a636d035fc9aaed62d7ff7708f518cf6377f4 Mon Sep 17 00:00:00 2001 From: restitux Date: Sun, 21 Aug 2022 16:49:17 -0400 Subject: [PATCH] Clean up ContentView row layout and visuals --- layouts/components/ContentView.qml | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/layouts/components/ContentView.qml b/layouts/components/ContentView.qml index 6bcf6f1..276cc57 100644 --- a/layouts/components/ContentView.qml +++ b/layouts/components/ContentView.qml @@ -15,6 +15,11 @@ TabView { color: "#22282A" Column { Row { + spacing: 80 + Item{ + width: 0.1 + height: 10 + } Repeater { property var provider: modelData id: inProgressRepeater @@ -23,15 +28,25 @@ TabView { id: showColumn property var show: inProgressRepeater.provider.getShow(modelData) Image { - height: 200 - width: 100 + height: 300 + width: 300 * 0.68 source: showColumn.show.poster + mipmap: true + anchors.horizontalCenter: parent.horizontalCenter } + Item {width: 1; height: 15} Text { text: showColumn.show.title + color: "white" + font.pointSize: 15 + anchors.horizontalCenter: parent.horizontalCenter } + Item {width: 1; height: 5} Text { text: showColumn.show.year + color: "white" + font.pointSize: 15 + anchors.horizontalCenter: parent.horizontalCenter } } }