A library to embed Web views in iced applications
A huge shoutout to @franzos for creating an improved fork of this project: franzos/iced_webview_v2
Their version includes more features, many more engine options, and iced 14.0 support
If you're looking to use this project today, you should probably use their fork instead!
Note: Currently this library only supports Ultralight/Webkit, but more rendering engines are planned to be supported.
Ultralight has its own license that should be reviewed before deciding if it works for you
A simple example to showcase an embedded webview (uses the basic webview)

cargo run --example embedded_webview --features ultralight-resourcesA more advanced example that uses the advanced webview module and has two simultaneous webviews open

cargo run --example multi_webview --features ultralight-resourcesUltralight requires runtime resources. (cacert.pem, icudt67l.dat)
You can either set the path to them with the
ULTRALIGHT_RESOURCES_DIRenv. This variable can also be set in.cargo/config.toml. The resources directory can be downloaded from Ultralight SDK
Or Rust will do its best symlink the directory with
--features ultralight-resources. If this fails please useULTRALIGHT_RESOURCES_DIR
The samples compiled rely on dynamic libraries provided by Ultralight:
libUltralightCore.so/UltralightCore.dlllibUltralight.so/Ultralight.dlllibWebCore.so/WebCore.dlllibAppCore.so/AppCore.dll
These can be downloaded from the Ultralight SDK.
Rust will download them during build as well, but are kept inside the
targetdirectory.