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