use iced::widget::{button, center, column}; use iced::window; use iced::{Alignment, Element, Task}; pub fn main() -> iced::Result { iced::application("Exit - Iced", Exit::update, Exit::view).run() } #[derive(Default)] struct Exit { show_confirm: bool, } #[derive(Debug, Clone, Copy)] enum Message { Confirm, Exit, } impl Exit { fn update(&mut self, message: Message) -> Task { match message { Message::Confirm => window::close(window::Id::MAIN), Message::Exit => { self.show_confirm = true; Task::none() } } } fn view(&self) -> Element { let content = if self.show_confirm { column![ "Are you sure you want to exit?", button("Yes, exit now") .padding([10, 20]) .on_press(Message::Confirm), ] } else { column![ "Click the button to exit", button("Exit").padding([10, 20]).on_press(Message::Exit), ] } .spacing(10) .align_items(Alignment::Center); center(content).padding(20).into() } }