Rust Iced Library

Rust Iced GUI Library

Official Github Repo

Guides:

Basic Widgets

#![allow(unused)]
fn main() {
button("Button").on_press(Message::ButtonPressed)
}

Layout

The layout is a bunch of nested lists, they way you expect:

#![allow(unused)]
fn main() {
container() // takes one element
column![]
row![]
}