3rd part of the layer/profile rework [2/2]
[AGL/meta-agl-demo.git] / recipes-graphics / web-runtime / web-runtime / web-runtime.qml
1 import QtQuick 2.1
2 import QtQuick.Controls 1.1
3 import QtWebEngine 1.1
4
5 ApplicationWindow {
6         width: 1024
7         height: 768
8         visible: true
9         flags: Qt.WindowFullScreen | Qt.FramelessWindowHint
10         WebEngineView {
11                 url: Qt.application.arguments[1]
12                 anchors.fill: parent
13         }
14 }