summaryrefslogtreecommitdiffstats
path: root/examples/exit (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Update all `examples` to Rust 2024Libravatar Héctor Ramón Jiménez2025-02-211-1/+1
|
* Revert `window::close` producing a `window::Id`Libravatar Héctor Ramón Jiménez2024-08-121-3/+1
| | | | | | Instead, subscribing to `window::close_events` is preferable; since most use cases will want to react to the user closing a window as well.
* Make `window::close` return and introduce `Task::discard`Libravatar Héctor Ramón Jiménez2024-08-121-1/+3
|
* Re-export variants of `Length` and `alignment` typesLibravatar Héctor Ramón Jiménez2024-07-121-2/+2
|
* Introduce helper methods for alignment for all widgetsLibravatar Héctor Ramón Jiménez2024-07-121-2/+2
|
* Remove `window::Id::MAIN` constantLibravatar Héctor Ramón Jiménez2024-06-201-1/+1
|
* Introduce `daemon` API and unify shell runtimesLibravatar Héctor Ramón Jiménez2024-06-191-1/+1
|
* Replace `Command` with a new `Task` API with chain supportLibravatar Héctor Ramón Jiménez2024-06-141-3/+3
|
* Introduce `center` widget helperLibravatar Héctor Ramón Jiménez2024-05-031-9/+3
| | | | | | | | ... and also make `center_x` and `center_y` set `width` and `height` to `Length::Fill`, respectively. This targets the most common use case when centering things and removes a bunch of boilerplate as a result.
* Move `Program` to `application` moduleLibravatar Héctor Ramón Jiménez2024-03-171-1/+1
|
* Implement `Program::load` to specify startup `Command`Libravatar Héctor Ramón Jiménez2024-03-161-7/+1
|
* Introduce `Program` APILibravatar Héctor Ramón Jiménez2024-03-161-14/+6
|
* Merge branch 'master' into feat/multi-window-supportLibravatar Héctor Ramón Jiménez2023-11-291-1/+1
|\
| * Use workspace dependencies and package inheritanceLibravatar Héctor Ramón Jiménez2023-09-041-1/+1
| | | | | | | | | | | | We are also taking this as a chance to synchronize the versions of all the crates! Because of this, we will skip the `0.11` version.
* | refactored window storage;Libravatar Bingus2023-07-211-1/+1
|/ | | | | new helper window events (Destroyed, Created); clippy + fmt;
* Draft `Shell:request_redraw` APILibravatar Héctor Ramón Jiménez2023-01-121-13/+13
| | | | ... and implement `TextInput` cursor blink :tada:
* Replace stateful widgets with new `iced_pure` APILibravatar Héctor Ramón Jiménez2022-07-271-28/+15
|
* Center contents with `Container` in `exit` exampleLibravatar Héctor Ramón Jiménez2022-01-031-7/+16
| | | | ... also add some `padding` to buttons!
* Allow Sandbox applications to exit.Libravatar Drake Tetreault2021-12-293-0/+95