mirror of
https://github.com/stemoretti/BaseUI.git
synced 2025-07-18 21:14:25 -04:00
Heavy changes
This commit is contained in:
15
qml/HorizontalListDivider.qml
Normal file
15
qml/HorizontalListDivider.qml
Normal file
@ -0,0 +1,15 @@
|
||||
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
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user