mirror of
https://github.com/stemoretti/BaseUI.git
synced 2025-05-25 07:10:23 -04:00
17 lines
357 B
QML
17 lines
357 B
QML
import QtQuick
|
|
import QtQuick.Layouts
|
|
|
|
Item {
|
|
height: 8
|
|
Layout.fillWidth: true
|
|
|
|
// 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
|
|
}
|
|
}
|