# Freya πŸ¦€ Freya logo [![Discord Server](https://img.shields.io/discord/1015005816094478347.svg?logo=discord&style=flat-square)](https://discord.gg/sYejxCdewG) [![Github Sponsors](https://img.shields.io/github/sponsors/marc2332?style=social)](https://github.com/sponsors/marc2332) [![codecov](https://codecov.io/github/marc2332/freya/branch/main/graph/badge.svg?token=APSGEC84B8)](https://codecov.io/github/marc2332/freya) [Website](https://freyaui.dev) | [Nightly Docs](https://docs.freyaui.dev/freya) | [Stable Docs](https://docs.rs/freya/latest/freya) | [Book](https://book.freyaui.dev) | [Discord](https://discord.gg/sYejxCdewG) **Freya** is a native GUI library for Rust powered by 🧬 [Dioxus](https://dioxuslabs.com) and 🎨 [Skia](https://skia.org/). ⚠️ It's currently work in progress and not usable for production, but you can already play with it! You can join the [Discord](https://discord.gg/sYejxCdewG) server if you have any question or issue.

```rust, no_run fn app() -> Element { let mut count = use_signal(|| 0); rsx!( rect { height: "20%", width: "100%", background: "rgb(233, 196, 106)", padding: "12", color: "rgb(20, 33, 61)", label { font_size: "20", "Number is: {count}" } } rect { height: "80%", width: "100%", background: "rgb(168, 218, 220)", color: "black", padding: "12", onclick: move |_| count += 1, label { "Click to increase!" } } ) } ``` ![Freya Demo](https://github.com/marc2332/freya/assets/38158676/f81a95a2-7add-4dbe-9820-3d3b6b42f6e5)
### Sponsors πŸ€— Thanks to my sponsors for supporting this project! πŸ˜„ Alberto Mendezandar1an ### Want to try it? πŸ€” ⚠️ First, see [Environment setup](https://book.freyaui.dev/setup.html). Clone this repo and run: ```shell cargo run --example counter ``` You can also try [`freya-template`](https://github.com/marc2332/freya-template) ### Usage πŸ“œ Add Freya and Dioxus as dependencies: ```toml freya = "0.2" dioxus = { version = "0.4", features = ["macro", "hooks"], default-features = false } ``` ### Features ✨ - ⛏️ Built-in **components** (button, scroll views, switch and more) - πŸš‡ Built-in **hooks** library (animations, text editing and more) - πŸ” Built-in **devtools** panel (experimental ⚠️) - 🧰 Built-in **headless testing** runner for components - 🎨 **Theming** support (not extensible yet ⚠️) - πŸ›©οΈ Cross-platform (Windows, Linux, MacOS) - πŸ–ΌοΈ SKSL **Shaders** support - πŸ”„οΈ Dioxus **Hot-reload** support - πŸ“’ Multi-line **text editing** (experimental ⚠️) - 🦾 Basic **Accessibility** Support (experimental ⚠️) - 🧩Compatible with dioxus-sdk and other Dioxus renderer-agnostic libraries ### Goals 😁 - Performant and low memory usage - Good developer experience - Cross-platform support - Decent Accessibility support - Useful testing APIs - Useful and extensible components and hooks ## Status ⌚ You can see the tracking [issue](https://github.com/marc2332/freya/issues/200) to know what features are implemented and which ones are not, yet. [MIT License](./LICENSE.md)