peerplays_migrated/programs/full_web_node/qml/main.qml

17 lines
370 B
QML
Raw Normal View History

import QtQuick 2.5
import QtQuick.Window 2.2
import QtWebEngine 1.0
Window {
2015-08-12 18:56:33 +00:00
id: window
width: Screen.width / 2
height: Screen.height / 2
2015-08-12 18:56:33 +00:00
Rectangle { anchors.fill: parent; color: "#1F1F1F" }
WebEngineView {
anchors.fill: parent
2015-08-12 18:56:33 +00:00
url: "http://localhost:8080"
onLoadProgressChanged: if (loadProgress === 100) window.visible = true
}
}