You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

26 lines
803 B

import QtQuick 2.6
import QtQuick.Controls.Material 2.0
Rectangle {
Rectangle {
anchors { left: parent.left; top: parent.top; right: parent.right }
height: 1
color: Qt.darker(Material.background, 1.50)
}
Rectangle {
anchors { left: parent.left; top: parent.top; bottom: parent.bottom }
width: 1
color: Qt.darker(Material.background, 1.50)
}
Rectangle {
anchors { left: parent.left; bottom: parent.bottom; right: parent.right }
height: 1
color: Qt.lighter(Material.background, 1.50)
}
Rectangle {
anchors { right: parent.right; top: parent.top; bottom: parent.bottom }
width: 1
color: Qt.lighter(Material.background, 1.50)
}
color: Qt.darker(Material.background, 1.15)
}