# flutter-webview-windows **Repository Path**: my_open_source_project/flutter-webview-windows ## Basic Information - **Project Name**: flutter-webview-windows - **Description**: No description available - **Primary Language**: Unknown - **License**: BSD-3-Clause - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-09-26 - **Last Updated**: 2021-10-12 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # webview_windows [![CI](https://github.com/jnschulze/flutter-webview-windows/actions/workflows/ci.yml/badge.svg)](https://github.com/jnschulze/flutter-webview-windows/actions/workflows/ci.yml) [![Pub](https://img.shields.io/pub/v/webview_windows.svg)](https://pub.dartlang.org/packages/webview_windows) A [Flutter](https://flutter.dev/) WebView plugin for Windows built on [Microsoft Edge WebView2](https://docs.microsoft.com/en-us/microsoft-edge/webview2/). ### Target platform requirements - [WebView2 Runtime](https://developer.microsoft.com/en-us/microsoft-edge/webview2/) - Windows 10 1809+ ### Development platform requirements - Visual Studio 2019 - Windows 10 SDK 2004+ (10.0.19041.0) ## Demo ![image](https://user-images.githubusercontent.com/720469/116823636-d8b9fe00-ab85-11eb-9f91-b7bc819615ed.png) https://user-images.githubusercontent.com/720469/116716747-66f08180-a9d8-11eb-86ca-63ad5c24f07b.mp4 ## Limitations This plugin provides seamless composition of web-based contents with other Flutter widgets by rendering off-screen. Unfortunately, [Microsoft Edge WebView2](https://docs.microsoft.com/en-us/microsoft-edge/webview2/) doesn't currently have an explicit API for offscreen rendering. In order to still be able to obtain a pixel buffer upon rendering a new frame, this plugin currently relies on the `Windows.Graphics.Capture` API provided by Windows 10. The downside is that older Windows versions aren't currently supported. Older Windows versions might still be targeted by using `BitBlt` for the time being. See: - https://github.com/MicrosoftEdge/WebView2Feedback/issues/20 - https://github.com/MicrosoftEdge/WebView2Feedback/issues/526 - https://github.com/MicrosoftEdge/WebView2Feedback/issues/547