mirror of
https://gitlab.com/kelteseth/ScreenPlay.git
synced 2024-11-07 03:22:33 +01:00
17 lines
267 B
QML
17 lines
267 B
QML
|
// SPDX-License-Identifier: BSD-3-Clause
|
||
|
|
||
|
import QtQuick
|
||
|
import QtQuick.Controls
|
||
|
import QtQuick.Controls.Material
|
||
|
|
||
|
Rectangle {
|
||
|
id: root
|
||
|
color: "#333333"
|
||
|
anchors.fill: parent
|
||
|
|
||
|
Button {
|
||
|
anchors.centerIn: parent
|
||
|
text: "Click me!"
|
||
|
}
|
||
|
}
|