Frui

Reading: "Fr" as in "fruit" and "ui" as in "you" and "I".

MIT Apache

What is Frui?

Frui is a developer-friendly UI framework that makes building user interfaces easy and productive. It's based on Flutter architecture and is written in Rust!

Example

```rust

![feature(min_specialization)]

![feature(typealiasimpl_trait)]

use frui::prelude::*;

[derive(ViewWidget)]

struct App;

impl ViewWidget for App { fn build<'w>(&'w self, _: BuildContext<'w, Self>) -> Self::Widget<'w> { Center::child(Text::new("Hello, World!")) } }

fn main() { run_app(App); } ```

Features

Frui, as of now, is a PoC, and has only implemented the most essential parts of the API. There is a lot of work that needs to be done, especially in terms of back-end considerations, optimizations, and widget implementations (widgets like buttons, gesture detectors, theming, flex wrappers, etc.).

🦀 Counter - Example

Obligatory crab counter! From examples/crab_counter.rs.

```rust

![feature(min_specialization)]

![feature(typealiasimpl_trait)]

use frui::prelude::*;

mod misc; use misc::Button;

[derive(ViewWidget)]

struct CrabCounter;

impl WidgetState for CrabCounter { type State = isize;

fn create_state(&self) -> Self::State { 0 }

}

impl ViewWidget for CrabCounter { fn build<'w>(&'w self, ctx: BuildContext<'w, Self>) -> Self::Widget<'w> { Column::builder() .spacebetween(60.0) .mainaxissize(MainAxisSize::Max) .crossaxissize(CrossAxisSize::Max) .mainaxisalignment(MainAxisAlignment::Center) .crossaxisalignment(CrossAxisAlignment::Center) .children(( Text::new(format!("{} 🦀", *ctx.state())) .size(100.0) .weight(FontWeight::BOLD), Row::builder() .spacebetween(10.0) .children(( Button { label: Text::new("+").size(30.), onclick: || *ctx.statemut() += 1, }, Button { label: Text::new("-").size(30.), onclick: || *ctx.statemut() -= 1, }, )), )) } }

fn main() { run_app(CrabCounter); } ```

screenshot of application running above code

Crabs counter running on MacOS

Credits

Frui wouldn't exist without Flutter and its widget architecture, which inspired Frui's API.

Frui also wouldn't exist without prior work done on Druid - which powers most of the back-end. Many widgets share some of the implementation details with it as well.

Thank you!

License

All code in this repository is dual-licensed under either: