main: Add different QMLs for doing screenshots
[apps/homescreen.git] / homescreen / qml / background_demo.qml
1 import QtQuick 2.13
2 import QtQuick.Window 2.13
3
4 Window {
5     id: background
6     width: Screen.width
7     height: Screen.height
8     flags: Qt.FramelessWindowHint
9     visible: true
10     color: 'red'
11 }