I have detected a problem. In the weblink.qml, when I replace :

Qt Code:
  1. WebView {
  2. id: webView
  3. anchors.fill: parent
To copy to clipboard, switch view to plain text mode 
with:
Qt Code:
  1. WebView {
  2. id: webView
  3. width : 1920
  4. 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