47 lines
990 B
QML
47 lines
990 B
QML
|
import QtQuick 2.9
|
||
|
import QtWebView 1.1
|
||
|
import QtQuick.Controls 2.2
|
||
|
|
||
|
import QtWebView 1.1
|
||
|
import QtQuick.Layouts 1.1
|
||
|
import QtQuick.Controls.Styles 1.2
|
||
|
|
||
|
Page {
|
||
|
id:root
|
||
|
anchors.fill: parent
|
||
|
|
||
|
objectName: "WebsitePage";
|
||
|
|
||
|
title: qsTr("Fanny Webseite")
|
||
|
ProgressBar {
|
||
|
id: progress
|
||
|
width: parent.width
|
||
|
anchors {
|
||
|
top: parent.top
|
||
|
}
|
||
|
//z: Qt.platform.os === "android" ? -1 : 1
|
||
|
visible: webView.loadProgress < 100
|
||
|
|
||
|
value: webView.loadProgress == 100 ? 0 : webView.loadProgress / 100
|
||
|
}
|
||
|
|
||
|
WebView {
|
||
|
id: webView
|
||
|
anchors {
|
||
|
top: webView.loadProgress < 100 ? progress.bottom:parent.top
|
||
|
bottom: parent.bottom
|
||
|
left: parent.left
|
||
|
right: parent.right
|
||
|
}
|
||
|
|
||
|
url: "http://www.fanny-leicht.de/j34"
|
||
|
onLoadingChanged: {
|
||
|
|
||
|
if (loadRequest.errorString)
|
||
|
console.error(loadRequest.errorString);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|