52 lines
1.1 KiB
QML
52 lines
1.1 KiB
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
|
|
}
|
|
|
|
Button {
|
|
z: 1
|
|
anchors.top: parent.top
|
|
text:"\u21BA"
|
|
onClicked: webView.reload()
|
|
}
|
|
|
|
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);
|
|
}
|
|
}
|
|
|
|
|
|
}
|