mirror of
https://github.com/stemoretti/BaseUI.git
synced 2025-05-28 00:30:27 -04:00
20 lines
526 B
QML
20 lines
526 B
QML
// ekke (Ekkehard Gentz) @ekkescorner
|
|
import QtQuick 2.12
|
|
import QtQuick.Controls 2.12
|
|
import QtQuick.Layouts 1.12
|
|
Item {
|
|
height: 8
|
|
Layout.fillWidth: true
|
|
// anchors.left: parent.left
|
|
// anchors.right: parent.right
|
|
// anchors.margins: 6
|
|
// https://www.google.com/design/spec/components/dividers.html#dividers-types-of-dividers
|
|
Rectangle {
|
|
anchors.centerIn: parent
|
|
width: parent.width
|
|
height: 1
|
|
opacity: Style.dividerOpacity
|
|
color: Style.dividerColor
|
|
}
|
|
}
|