# sailfish-components-webview **Repository Path**: mechanism/sailfish-components-webview ## Basic Information - **Project Name**: sailfish-components-webview - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-05-14 - **Last Updated**: 2021-05-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README This repository contains a QML plugin which provides a convenience type to allow client applications to easily embed the Sailfish OS Browser WebView into their own application in order to render web webcontent. Note: currently you have to explicitly link against qtmozembed-qt5 at build time, to avoid a symbol issue which leads to a crash: CONFIG += link_pkgconfig PKGCONFIG += qt5embedwidget Example: import QtQuick 2.0 import Sailfish.Silica 1.0 import Sailfish.WebView 1.0 ApplicationWindow { id: root initialPage: Component { Page { id: page WebView { anchors.fill: parent active: true url: "http://www.sailfishos.org" } } } }