I have detected a problem. In the weblink.qml, when I replace :
WebView {
id: webView
anchors.fill: parent
WebView {
id: webView
anchors.fill: parent
To copy to clipboard, switch view to plain text mode
with:
WebView {
id: webView
width : 1920
height: 1080
WebView {
id: webView
width : 1920
height: 1080
To copy to clipboard, switch view to plain text mode
The web page shows up on QQuickWidget correctly. But of course size of the webview is not changing dynamically in that case. So it looks like "anchors.fill: parent" is not working as expected with WebView and QQuickWidget combination.
Is this a known bug and is there any workaround for this ? Thanks
Bookmarks