aboutsummaryrefslogtreecommitdiffstats
path: root/homescreen/qml/background_demo.qml
blob: e3a99a18c95d617f1e0758c6e22ebec1461108fd (plain)
1
2
3
4
5
6
7
8
9
10
11
import QtQuick 2.13
import QtQuick.Window 2.13

Window {
    id: background
    width: Screen.width
    height: Screen.height
    flags: Qt.FramelessWindowHint
    visible: true
    color: 'red'
}