wowlet/src/vr/qml/common/LineSeparator.qml
2021-04-14 22:00:25 +02:00

15 lines
347 B
QML
Executable file

import QtQuick 2.7
import QtQuick.Controls 2.0
import QtQuick.Layouts 1.3
// Necessary for the project specific Components.
import ".."
// Insert inside a ColumnLayout containing this and a RowLayout
// to neatly separate header and buttons.
Rectangle {
color: "#ffffff"
height: 1
Layout.fillWidth: true
Layout.bottomMargin: 5
}