peerplays_migrated/programs/full_web_node/qml/main.qml
2015-08-12 15:47:03 -04:00

16 lines
370 B
QML

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