Skip to content

Instantly share code, notes, and snippets.

use iced::{Checkbox, Column, Container, Element, Length, Sandbox, Settings};
fn main() -> iced::Result {
Example::run(Settings::default())
}
#[derive(Debug)]
struct Item {
name: String,
checked: bool,