mirror of
https://github.com/stemoretti/BaseUI.git
synced 2026-02-05 15:00:16 -05:00
Heavy changes
This commit is contained in:
16
qml/HorizontalDivider.qml
Normal file
16
qml/HorizontalDivider.qml
Normal file
@ -0,0 +1,16 @@
|
||||
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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user