18 lines
272 B
QML
18 lines
272 B
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
import "qrc:/gui"
|
|
|
|
ColumnLayout
|
|
{
|
|
anchors.top: TopBar.bottom
|
|
|
|
Rectangle
|
|
{
|
|
color: "blue"
|
|
Layout.fillHeight: true
|
|
Layout.fillWidth: true
|
|
Layout.bottomMargin: 9
|
|
}
|
|
}
|