freya 0.2.2

Cross-platform GUI Library powered by Dioxus and Skia.
Documentation
# Freya ๐Ÿฆ€

<a href="https://freyaui.dev/"><img align="right" src="logo.svg" alt="Freya logo" width="150"/></a>

[![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. 

<br/>
<br/>

<table>
<tr>
<td style="border:hidden;">

```rust, no_run
fn app() -> Element {
    let mut count = use_signal(|| 0);

    render!(
        rect {
            height: "50%",
            width: "100%",
            main_align: "center",
            cross_align: "center",
            background: "rgb(0, 119, 182)",
            color: "white",
            shadow: "0 4 20 5 rgb(0, 0, 0, 80)",
            label {
                font_size: "75",
                font_weight: "bold",
                "{count}"
            }
        }
        rect {
            height: "50%",
            width: "100%",
            main_align: "center",
            cross_align: "center",
            direction: "horizontal",
            Button {
                onclick: move |_| count += 1,
                label { "Increase" }
            }
            Button {
                onclick: move |_| count -= 1,
                label { "Decrease" }
            }
        }
    )
}
```
</td>
<td style="border:hidden;">

![Freya Demo](https://github.com/marc2332/freya/assets/38158676/f81a95a2-7add-4dbe-9820-3d3b6b42f6e5)

</td>
</table>

### Sponsors ๐Ÿค—

Thanks to my sponsors for supporting this project! ๐Ÿ˜„

<!-- sponsors --><a href="https://github.com/piny4man"><img src="https://github.com/piny4man.png" width="60px" alt="Alberto Mendez" /></a><a href="https://github.com/andar1an"><img src="https://github.com/andar1an.png" width="60px" alt="andar1an" /></a><!-- sponsors -->

### 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.5", 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

[MIT License](./LICENSE.md)