opaque/HLine.qml

29 lines
494 B
QML
Raw Normal View History

2020-05-19 19:49:52 +00:00
import QtQuick 2.12
2020-05-19 20:25:56 +00:00
import "theme"
2020-05-19 19:49:52 +00:00
Column {
width: parent.width
anchors.horizontalCenter: parent.horizontalCenter
Rectangle {
height: 10
color:"transparent"
width: parent.width
}
Rectangle {
anchors.horizontalCenter: parent.horizontalCenter
height: 1
width: parent.width * 0.95
color: Theme.dropShadowColor
}
Rectangle {
height: 10
color:"transparent"
width: parent.width
}
}