egui and iced component set with shadcn/ui aesthetics.
Warning
API STABILITY NOTICE: shadcn-rs API is currently unstable and may change between versions, including breaking changes.
Always pin exact crate versions and review release notes before upgrading.
- Rust workspace for shadcn-style UI component libraries.
- Two public API styles: props-first (
*Props/ free functions) and builder-first (fluentComponent::new(…).variant(…)chains). - Theming and style packs in
shadcn-commonare built ontwill.
egui-shadcn— egui components, props-first API (some thin builder wrappers on top of props; seecrates/egui-shadcn/README.md).iced-shadcn— iced components, v1 props-first API (seecrates/iced-shadcn/README.md).iced-shadcn-v2— iced components, v2 builder-first API; does not depend on v1 (seecrates/iced-shadcn-v2/README.md).shadcn-common— shared design tokens, style packs, and backend-agnostic helpers for egui/iced (seecrates/shadcn-common/README.md).
Full interactive showcase for egui-shadcn (and iced) in the browser:
ferrismind.github.io/shadcn-rs
Project_06_08_2026_21_01_55.mp4
Source: crates/wasm-demo.
These desktop apps use the v1 (iced-shadcn) props-first API and are still under development. See also issue #5.
Minimal VS Code–style editor UI on iced.
nova.mp4
Minimal desktop browser using system web engines via wry.
zver.mp4
Local desktop translator (text for now; more formats planned).
neurolang.mp4
Dual-licensed under MIT OR Apache-2.0 (see workspace Cargo.toml).
- egui — immediate-mode GUI framework for the egui-shadcn crate.
- iced — retained-mode GUI framework for the iced-shadcn and iced-shadcn-v2 crates.
- Lucide Icons — icon set used via
lucide-icons. - Radix UI — interaction patterns and accessibility cues.
- shadcn/ui — design language and component inspiration.
- shadcn-svelte — Svelte port of shadcn/ui; reference for component patterns and API shape.