AusweisApp2/resources/qml/Governikus/HistoryView/+android/HistoryListViewDelegate.qml

24 lines
472 B
QML
Raw Normal View History

2017-07-03 09:33:28 +02:00
import QtQuick 2.7
2017-07-03 09:30:10 +02:00
2017-12-20 14:54:05 +01:00
import Governikus.Global 1.0
2017-07-03 09:30:10 +02:00
2017-07-03 09:33:28 +02:00
Rectangle {
property alias showDetail: contentItem.showDetail
property alias listModel: contentItem.listModel
2017-07-03 09:30:10 +02:00
2017-07-03 09:33:28 +02:00
HistoryListViewDelegateContent {
id: contentItem
height: parent.height - borderLine.height
width: parent.width
anchors.top: parent.top
}
2017-07-03 09:30:10 +02:00
Rectangle {
2017-07-03 09:33:28 +02:00
id: borderLine
color: "black"
height: Utils.dp(1)
width: parent.width
anchors.top: contentItem.bottom
anchors.bottom: parent.bottom
2017-07-03 09:30:10 +02:00
}
}