summaryrefslogtreecommitdiffstats
path: root/meta-app-framework/recipes-core/web-runtime/web-runtime/web-runtime.qml
blob: afe8a77d074d75e5674b225158f31bafb193a16c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import QtQuick 2.1
import QtQuick.Controls 1.1
import QtWebEngine 1.1

ApplicationWindow {
	width: 1024
	height: 768
	visible: true
	WebEngineView {
		url: Qt.application.arguments[1]
		anchors.fill: parent
	}
}