14 lines
220 B
QML
14 lines
220 B
QML
import QtQuick 2.5
|
|
import QtQuick.Controls 2.2
|
|
import QtQuick.Layouts 1.3
|
|
|
|
CustomViewBase {
|
|
height: grid.implicitHeight + app.margins * 2
|
|
|
|
ColumnLayout {
|
|
Label {
|
|
text: "bla"
|
|
}
|
|
}
|
|
}
|