freya-webview 0.4.0-rc.3

WebView support for Freya using WRY
docs.rs failed to build freya-webview-0.4.0-rc.3
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.

WebView support for Freya using WRY.

This crate provides WebView integration for Freya applications using the WRY library. WebViews can be embedded in your Freya UI as regular elements.

Example

use freya::prelude::*;
use freya_webview::prelude::*;

fn main() {
    launch(
        LaunchConfig::new()
            .with_plugin(WebViewPlugin::new())
            .with_window(WindowConfig::new(app)),
    )
}

fn app() -> impl IntoElement {
    WebView::new("https://example.com").expanded()
}