Reading: "Fr" as in "fruit" and "ui" as in "you" and "I".
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!
```rust
use frui::prelude::*;
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); } ```
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.).
ViewWidget
(based on StatelessWidget
and StatefulWidget
)InheritedWidget
(based on InheritedWidget
)LocalKey
(based on Key
)KeyboardEventDetector
/ mouse events through event
method)Column
, Row
, Center
)Column
, Row
, GestureDetector
, Scroll
, etc.)Obligatory crab counter! From examples/crab_counter.rs
.
```rust
use frui::prelude::*;
mod misc; use misc::Button;
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); } ```
Crabs counter running on MacOS
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!
All code in this repository is dual-licensed under either: