One of the most popular GUI libraries for Rust in 2024 is egui.
egui is an immediate mode GUI and aims to be simple, easy to use, and highly portable.
fn ui_counter(ui: &mut egui::Ui, counter: &mut i32) {
ui.horizontal(|ui| {
if ui.button("−").clicked() {