blob: 88b95c0aa54fef13a472ac3bbc180fbaef13d1a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import QtQuick 2.11
import QtQuick.Window 2.11
Window {
id: background
width: Screen.width
height: Screen.height
flags: Qt.FramelessWindowHint
visible: true
color: '#fff000'
}
|