webview icon indicating copy to clipboard operation
webview copied to clipboard

Tiny cross-platform webview library for C/C++. Uses WebKit (GTK/Cocoa) and Edge WebView2 (Windows).

Results 250 webview issues
Sort by recently updated
recently updated
newest added

I am using Vite to build my ReactJS project. After running` npm run build`, it generates a `dist/` folder containing all the necessary assets and resources. During development, everything worked...

Some build systems fail to download MSWebview2 due to requiring valid SSL authentication, but cannot find a local ca cert file. This PR resolves the issue by providing a cert...

Hi! I really liked this project, been using webview_java for some of my projects ( [all-you-need-is-java](https://github.com/NotJustAnna/all-you-need-is-java) , [aux-cable](https://github.com/NotJustAnna/aux-cable) ) but I saw on Discord the developer is stepping away. Because...

At least some versions of MingW use the `...-mingw32-gcc-executable` file naming convention without providing links to the alternative `...-mingw32-executable` convention. This will cause a build error failure in some circumstances....

We should look into improving the type safety of the Objective-C runtime invocations for macOS. Take this as an example: ```cpp id NSApplication_nextEventMatchingMask( // return type? id self, // NSApplication...

Investigate library's conformance with C++ Core Guidelines "[Prefer the `{}`-initializer syntax](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Res-always)" rule and apply fixes. The library is currently using a mix of `()`, `{}` and `=` so it makes...

Investigate library's conformance with C++ Core Guidelines "[Always initialize an object](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Res-list)" rule and apply fixes. Enabling the Clang Tidy rule `cppcoreguidelines-init-variables` should help find uninitialized variables.

Issue for tracking sub-issues related to C++ Core Guidelines conformance.

The `activateIgnoringOtherApps:` method of `NSApplication` is deprecated and we're now supposed to use the `activate` method. OS support: Method | macOS ---------------------------- | --------- `activateIgnoringOtherApps:` | 10.0–15.4 `activate` | 14.0+...

type: feature request
os: macos
scope: ui

The onFrame method has already been mounted to the window object in the HTML file, but the following code cannot execute JavaScript code via the eval method. I suspect that...