Saturday, July 27, 2013

qml example: WebView

qml example: WebView
qml example: WebView

import QtQuick 2.0
import QtWebKit 3.0

Rectangle {
    width: 400
    height: 360

    WebView{
        id: myWebView
        url: "http://qteveloper.blogspot.com/"
        width: parent.width
        height: parent.height
    }

}