blob: f2de6cfbb9dd5ec2e2fc16ee139dce3c78f91a90 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import QtQuick 2.12
import QtQuick.Controls 2.12
import QtQuick.Controls.Material 2.12
Page {
property alias contentLabel: contentLabel
Label {
id: contentLabel
anchors.centerIn: parent
}
}
|