mirror of
https://git.wownero.com/wowlet/wowlet.git
synced 2024-08-15 01:03:14 +00:00
15 lines
347 B
QML
Executable file
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
|
|
}
|