egui_hooks 0.11.0

React Hooks like API for egui
Documentation
use eframe::egui;
use egui_hooks::UseHookExt as _;

fn main() {
    eframe::run_native(
        "example",
        Default::default(),
        Box::new(|_| Ok(Box::new(MyApp))),
    )
    .unwrap();
}

struct MyApp;

impl eframe::App for MyApp {
    fn ui(&mut self, ui: &mut egui::Ui, _frame: &mut eframe::Frame) {
        egui::CentralPanel::default().show_inside(ui, |ui| {
            let count = ui.use_state(|| 0usize, ());
            ui.use_effect(|| println!("Count changed to {}", *count), count.clone());
            ui.label(format!("Count: {}", count));
            if ui.button("Increment").clicked() {
                count.set_next(*count + 1);
            }
        });
    }
}