Skip to content

Instantly share code, notes, and snippets.

@lauromoura
Created March 28, 2012 20:52
Show Gist options
  • Save lauromoura/2230414 to your computer and use it in GitHub Desktop.
Save lauromoura/2230414 to your computer and use it in GitHub Desktop.
Minimal webview
import QtQuick 2.0
import QtWebKit 3.0
import com.nokia.meego 2.0
PageStackWindow {
id: mainWindow
initialPage: Page {
id: mainPage
orientationLock: PageOrientation.LockPortrait
WebView {
id: webView
url: "http://www.google.com"
anchors.fill: parent
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment