import QtQuick import QtQuick.Layouts import QtQuick.Controls import QtWebEngine ApplicationWindow { width: 640 height: 480 visible: true title: qsTr("Hello World") ColumnLayout { anchors.fill: parent RowLayout { Layout.fillWidth: true TextField { id: _txtUrl Layout.fillWidth: true } Button { text: "Go" onClicked: { _view.url = "http://" + _txtUrl.text } } } WebEngineView { id: _view Layout.fillWidth: true Layout.fillHeight: true onUrlChanged: { _txtUrl.text = url } } } }