39 lines
1.0 KiB
QML
39 lines
1.0 KiB
QML
import QtQuick 2.12
|
|
import QtQuick.Controls 1.4
|
|
|
|
import Ikinuki.Client 1.0
|
|
|
|
TabView {
|
|
property var providers
|
|
width: parent.width * 0.7
|
|
height: parent.height
|
|
tabsVisible: false
|
|
Repeater {
|
|
model: providers
|
|
Tab {
|
|
Rectangle {
|
|
color: "#22282A"
|
|
Row {
|
|
Item {
|
|
height: 10
|
|
width: 40
|
|
}
|
|
Column {
|
|
spacing: 20
|
|
ContentViewElement {
|
|
title: "In Progress"
|
|
provider: modelData
|
|
repeaterModel: modelData.inProgress
|
|
}
|
|
ContentViewElement {
|
|
title: "Recently Added"
|
|
provider: modelData
|
|
repeaterModel: modelData.recentlyAdded
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|