mirror of
https://github.com/stemoretti/BaseUI.git
synced 2025-05-25 15:20:23 -04:00
16 lines
326 B
QML
16 lines
326 B
QML
import QtQuick
|
|
import QtQuick.Layouts
|
|
|
|
// special divider for list elements
|
|
// using height 1 ensures that it looks good if highlighted
|
|
Item {
|
|
height: 1
|
|
Layout.fillWidth: true
|
|
Rectangle {
|
|
width: parent.width
|
|
height: 1
|
|
opacity: Style.dividerOpacity
|
|
color: Style.dividerColor
|
|
}
|
|
}
|