summaryrefslogtreecommitdiffstats
path: root/src/webenginequick/doc/snippets/minimal/main.qml
blob: 87a8757dff8196621f89db89f7b27eb5c8c58fde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

//! [Minimal Example]
import QtQuick
import QtQuick.Window
import QtWebEngine

Window {
    width: 1024
    height: 750
    visible: true
    WebEngineView {
        anchors.fill: parent
        url: "https://www.qt.io"
    }
}
//! [Minimal Example]