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

24 lines
472 B
QML

import QtQuick 2.7
import Governikus.Global 1.0
Rectangle {
property alias showDetail: contentItem.showDetail
property alias listModel: contentItem.listModel
HistoryListViewDelegateContent {
id: contentItem
height: parent.height - borderLine.height
width: parent.width
anchors.top: parent.top
}
Rectangle {
id: borderLine
color: "black"
height: Utils.dp(1)
width: parent.width
anchors.top: contentItem.bottom
anchors.bottom: parent.bottom
}
}