Create new ContentViewTab to control input logic

This commit is contained in:
2022-09-08 11:48:50 -06:00
parent 0f77be4b0d
commit 34aa28529d
7 changed files with 101 additions and 89 deletions
@@ -0,0 +1,37 @@
import QtQuick 2.12
Row {
property var show
Item {
height: parent.height
width: 16
}
Column {
height: parent.height
width: parent.width - 16
spacing: 20
Item {
height: 20
width: parent.width
}
Text {
text: show.title
font.pointSize: 30
color: "#cdd7d9"
}
Text {
text: show.year
font.pointSize: 15
color: "#99afb4"
}
Text {
text: show.description
font.pointSize: 13
color: "#cdd7d9"
width: parent.width * 0.6
wrapMode: Text.WordWrap
maximumLineCount: 4
elide: Text.ElideRight
}
}
}