3efe51591bd28213de1e8f3fc0e2717e839f5071
[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: 1080
7         height: 1488
8         visible: true
9         flags: Qt.WindowFullScreen | Qt.FramelessWindowHint
10         WebEngineView {
11                 url: Qt.application.arguments[1]
12                 anchors.fill: parent
13         }
14 }