Iced_webview
A library to embed Web views in iced applications
This library supports
- Ultralight/Webkit — full browser engine with JS and navigation (license)
- litehtml — lightweight CPU-based HTML/CSS rendering, no JS or navigation (good for static content like emails)
Compatibility
| iced | iced_webview |
|---|---|
| 0.14 | 0.0.6 |
| 0.13 | 0.0.5 |
examples:
examples/embedded_webview
A simple example to showcase an embedded webview (uses the basic webview)

# or with litehtml
examples/multi_webview
A more advanced example that uses the advanced webview module and has two simultaneous webviews open

examples/email
Renders a table-based marketing email using litehtml — demonstrates static HTML rendering without a full browser engine
Extra files (Resources)
Ultralight requires runtime resources. (cacert.pem, icudt67l.dat)
You can either set the path to them with the
ULTRALIGHT_RESOURCES_DIRenv. This varible can also be set in.cargo/config.toml. The resouces direcory 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
Deployment
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.
Original developer: LegitCamper/iced_webview (Sawyer Bristol and others)