WebView display blank white screen
-
I've used the Webview to display the webpage within the my QtQuick app. But its showing the blank screen instead of displaying the webpage. Also it gives some warning saying "using qt quick 1 code model instead of qt quick 2".
-
Which version? What platform? If this is on Windows with Qt 5.2 then it could be http://bugreports.qt-project.org/browse/QTBUG-37043
-
If you see a blank screen in QWebView, check that the URL is correct and fully qualified. Consider switching to QWebEngineView for newer Qt versions. Ensure you have the necessary WebKit or WebEngine dependencies, enable JavaScript if needed, and check the console for errors like missing resources or SSL issues. You can also try loading simple HTML to test. Updating Qt may fix any bugs causing the problem.