summaryrefslogtreecommitdiffstats
path: root/examples/url_handler (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Update all `examples` to Rust 2024Libravatar Héctor Ramón Jiménez2025-02-211-1/+1
|
* Introduce `daemon` API and unify shell runtimesLibravatar Héctor Ramón Jiménez2024-06-191-1/+1
|
* Introduce `subscription::Event`Libravatar Héctor Ramón Jiménez2024-06-111-12/+5
| | | | ... and remove `PlatformSpecific` from `Event`
* Introduce `center` widget helperLibravatar Héctor Ramón Jiménez2024-05-031-8/+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
|
* Remove `sandbox` by making `application` more generic :tada:Libravatar Héctor Ramón Jiménez2024-03-161-1/+1
|
* Make `sandbox` helper take a `title` as wellLibravatar Héctor Ramón Jiménez2024-03-161-2/+1
|
* Introduce `Program` APILibravatar Héctor Ramón Jiménez2024-03-161-23/+8
|
* Merge pull request #2069 from iced-rs/use-workspace-dependenciesLibravatar Héctor Ramón2023-09-071-1/+1
|\ | | | | Use workspace dependencies and package inheritance
| * 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.
* | Introduce `keyboard::on_key_press` and `on_key_release`Libravatar Héctor Ramón Jiménez2023-09-071-6/+7
|/ | | | Also rename `subscription::events*` to `event::listen*`.
* Create `iced_widget` subcrate and re-organize the whole codebaseLibravatar Héctor Ramón Jiménez2023-03-042-7/+4
|
* Replace stateful widgets with new `iced_pure` APILibravatar Héctor Ramón Jiménez2022-07-271-6/+6
|
* Fix `clippy` lints for all crates and featuresLibravatar Héctor Ramón Jiménez2022-07-091-1/+1
| | | | ... and check those in CI as well!
* Draft first-class `Theme` supportLibravatar Héctor Ramón Jiménez2022-05-141-3/+5
| | | | RFC: https://github.com/iced-rs/rfcs/pull/6
* Update Rust edition to 2021 :tada:Libravatar Héctor Ramón Jiménez2022-02-091-2/+2
|
* Make `Command` implementations platform-specificLibravatar Héctor Ramón Jiménez2021-09-021-7/+3
| | | | | | | | | This allows us to introduce a platform-specific `Action` to both `iced_native` and `iced_web` and remove the `Clipboard` from `Application::update` to maintain purity. Additionally, this should let us implement further actions to let users query and modify the shell environment (e.g. window, clipboard, and more!)
* Use new enum variant and new winit repoLibravatar Richard2021-06-252-9/+13
|
* Added events for url handling and create exampleLibravatar Richard2021-06-252-0/+79