afe8a77d074d75e5674b225158f31bafb193a16c
[AGL/meta-agl.git] / meta-app-framework / recipes-core / 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         WebEngineView {
10                 url: Qt.application.arguments[1]
11                 anchors.fill: parent
12         }
13 }