#skia #dioxus #ui #desktop #ui-elements

freya-elements

Internal elements, attributes and events designed for Freya

2 unstable releases

new 0.2.0 Apr 27, 2024
0.1.0 Aug 16, 2023

#1255 in GUI

Download history 34/week @ 2024-01-05 36/week @ 2024-01-12 24/week @ 2024-01-19 24/week @ 2024-01-26 14/week @ 2024-02-02 20/week @ 2024-02-09 46/week @ 2024-02-16 44/week @ 2024-02-23 34/week @ 2024-03-01 43/week @ 2024-03-08 47/week @ 2024-03-15 68/week @ 2024-03-22 80/week @ 2024-03-29 43/week @ 2024-04-05 44/week @ 2024-04-12 29/week @ 2024-04-19

206 downloads per month
Used in 9 crates (8 directly)

MIT license

92KB
2K SLoC

Freya 🦀

Freya logo

Discord Server Github Sponsors codecov

Website | Nightly Docs | Stable Docs | Book | Discord

Freya is a native GUI library for Rust powered by 🧬 Dioxus and 🎨 Skia.

⚠️ It's currently work in progress and not usable for production, but you can already play with it! You can join the Discord server if you have any question or issue.



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

Sponsors 🤗

Thanks to my sponsors for supporting this project! 😄

Alberto Mendezandar1an

Want to try it? 🤔

⚠️ First, see Environment setup.

Clone this repo and run:

cargo run --example counter

You can also try freya-template

Usage 📜

Add Freya and Dioxus as dependencies:

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 to know what features are implemented and which ones are not, yet.

MIT License

Dependencies

~6–24MB
~323K SLoC