blob: f0178a00599cb5f1f37167c29449c7b9a5d204b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import QtQuick 2.2
import QtQuick.Window 2.11
import QtQuick.Layouts 1.1
Window {
visible: true
flags: Qt.FramelessWindowHint
width: Screen.width
height: Screen.height
title: 'HomeScreen'
color: '#ff00ff00'
}
|