mirror of
https://gitlab.com/kelteseth/ScreenPlay.git
synced 2024-11-07 03:22:33 +01:00
16 lines
227 B
QML
16 lines
227 B
QML
|
// SPDX-License-Identifier: BSD-3-Clause
|
||
|
|
||
|
import QtQuick
|
||
|
import QtQuick.Effects
|
||
|
import QtQuick.Particles
|
||
|
|
||
|
Item {
|
||
|
id: root
|
||
|
anchors.fill: parent
|
||
|
|
||
|
Rectangle {
|
||
|
anchors.fill: parent
|
||
|
color: "gray"
|
||
|
}
|
||
|
}
|