opaque/HLine.qml

27 lines
527 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
2020-12-15 01:16:49 +00:00
anchors.horizontalCenter: typeof(Layout) == undefined ? parent.horizontalCenter : undefined
2020-05-19 19:49:52 +00:00
Rectangle {
height: 10
color:"transparent"
width: parent.width
}
Rectangle {
anchors.horizontalCenter: parent.horizontalCenter
height: 1
2020-12-15 01:16:49 +00:00
width: parent.width
2020-05-19 19:49:52 +00:00
color: Theme.dropShadowColor
}
Rectangle {
height: 10
color:"transparent"
width: parent.width
}
}