web-view icon indicating copy to clipboard operation
web-view copied to clipboard

Rust bindings for webview, a tiny cross-platform library to render web-based GUIs for desktop applications

Results 100 web-view issues
Sort by recently updated
recently updated
newest added

How can i call the invoke_handler from a Yew application? I want to communicate between Yew and Webview. I already tried adding javascript to Yew through stdweb and then calling...

I'm building a single-page app using seed and rollup, and a native wrapper using inline-assets, rust-embed and web-view (all glued together using npm and rust build scripts). When I serve...

Does WebView support custom elements? If I try to define one `customElements.define("my-element", MyElement)` it crashes by doing nothing anymore. I tried it with the edge feature on.

It's useful to be able to see what commit each release was cut from, but the only tag in the entire project is for v0.1.3.

Evaluating JavaScript can fail for any number of reasons. The big one I ran into today is that when the browser's JavaScript thread is blocked by the debugger (though it...

It would be good to have a changelog for this crate (in a format something like https://keepachangelog.com/en/1.0.0/) so that when people see there is a new version, they don't need...

Whenever debug mode is enabled, a local webpage is loaded and web-view sends a message to the IDE, the IDE freezes. The problem occurs because the "URL" sent contains the...

As of now the code expects a funciton that returns a Result as an invoke_handler, however, an async function returns a Future. Is there a chance support for async invoke_handlers...