summaryrefslogtreecommitdiffstats
path: root/examples/clock (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Simplify imports of `clock` exampleLibravatar Héctor Ramón Jiménez2025-02-211-2/+2
|
* Update all `examples` to Rust 2024Libravatar Héctor Ramón Jiménez2025-02-212-3/+3
|
* Add `Duration` helpers to `time` moduleLibravatar Héctor Ramón Jiménez2025-01-241-2/+2
|
* Simplify tick drawing logic in `clock` exampleLibravatar Héctor Ramón Jiménez2025-01-161-3/+1
|
* Make numbers bigger and draw ticks in `clock` exampleLibravatar Héctor Ramón Jiménez2025-01-161-16/+35
|
* Modified clock example to make the clock more readable. Added numbers on ↵Libravatar Kevin Day2024-10-191-2/+26
| | | | the clock face and took the portion of the hour passed into consideration for the hour hand. It now looks like a reasonable clock.
* Re-export variants of `Length` and `alignment` typesLibravatar Héctor Ramón Jiménez2024-07-121-10/+4
|
* Introduce `daemon` API and unify shell runtimesLibravatar Héctor Ramón Jiménez2024-06-191-1/+1
|
* Remove redundant default `chrono` feature in `clock` exampleLibravatar Héctor Ramón Jiménez2024-05-181-1/+1
|
* Simplify `clock` example a bitLibravatar Héctor Ramón Jiménez2024-05-181-12/+12
|
* Fix `clock` example doesn't get the correct local time under unix systemLibravatar Skygrango2024-05-032-16/+13
| | | | | There is a long-standing problem (https://github.com/time-rs/time/issues/293) that has not yet been solved by time-rs Switch to chrono as it seemed to solve the problem (https://github.com/chronotope/chrono/pull/677)
* Enable logging in `clock` exampleLibravatar Héctor Ramón Jiménez2024-04-302-0/+3
|
* Move `Program` to `application` moduleLibravatar Héctor Ramón Jiménez2024-03-171-1/+1
|
* Remove `Sandbox` trait :tada:Libravatar Héctor Ramón Jiménez2024-03-171-1/+1
|
* Improve styling of `clock` exampleLibravatar Héctor Ramón Jiménez2024-03-161-5/+5
|
* Scale theme name in `clock` exampleLibravatar Héctor Ramón Jiménez2024-03-161-3/+3
|
* Remove `sandbox` by making `application` more generic :tada:Libravatar Héctor Ramón Jiménez2024-03-161-1/+1
|
* Show name of current `Theme` in `clock` exampleLibravatar Héctor Ramón Jiménez2024-03-161-4/+29
|
* 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-32/+21
|
* Use `Theme::TokyoNight` for `clock` exampleLibravatar Héctor Ramón Jiménez2024-03-081-5/+11
|
* Convert `Renderer::Theme` to generic `Widget` typeLibravatar Héctor Ramón Jiménez2024-01-211-1/+1
|
* Fix `clippy::default_trait_access`Libravatar Héctor Ramón Jiménez2023-09-201-1/+1
|
* Fix `clippy::semicolon_if_nothing_returned`Libravatar Héctor Ramón Jiménez2023-09-201-1/+1
|
* Use workspace dependencies and package inheritanceLibravatar Héctor Ramón Jiménez2023-09-041-2/+4
| | | | | | 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.
* Implement basic cursor availabilityLibravatar Héctor Ramón Jiménez2023-06-081-4/+3
|
* Implement `Canvas` support for `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2023-03-011-4/+5
|
* Run `cargo fmt`Libravatar Héctor Ramón Jiménez2022-11-031-1/+1
|
* Fixed lint issues & cleaned up some documentation.Libravatar shan2022-10-061-3/+3
|
* Reworked wgpu buffers, updated glow side to have proper transform location ↵Libravatar shan2022-10-041-3/+3
| | | | storage, attempting to fix visibility modifiers, implemented some of the feedback received in initial PR.
* Adds linear gradient support to 2D meshes in the canvas widget.Libravatar shan2022-09-291-22/+32
|
* Replace stateful widgets with new `iced_pure` APILibravatar Héctor Ramón Jiménez2022-07-271-8/+12
|
* Implement theme styling for `Canvas`Libravatar Héctor Ramón Jiménez2022-06-071-1/+6
|
* Draft first-class `Theme` supportLibravatar Héctor Ramón Jiménez2022-05-141-4/+8
| | | | RFC: https://github.com/iced-rs/rfcs/pull/6
* Reintroduce generic `Message` type for `canvas::Program`Libravatar Héctor Ramón Jiménez2022-03-181-3/+1
| | | | | As it is useful to make the `Message` completely free in many implementations.
* Use associated type for `Message` in a `canvas::Program`Libravatar Héctor Ramón Jiménez2022-03-091-1/+3
|
* Update Rust edition to 2021 :tada:Libravatar Héctor Ramón Jiménez2022-02-091-1/+1
|
* Make `clock` example responsiveLibravatar Héctor Ramón Jiménez2022-01-151-5/+1
|
* Replace `chrono` with `time` in `clock` exampleLibravatar Héctor Ramón Jiménez2022-01-122-11/+14
|
* 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!)
* Add `clipboard` argument to `Application::update`Libravatar Héctor Ramón Jiménez2021-03-111-3/+7
|
* Make `Application` and `Sandbox` return a `Result`Libravatar Héctor Ramón Jiménez2020-09-081-1/+1
|
* Implement `time::every` in `iced_futures`Libravatar Héctor Ramón Jiménez2020-04-302-44/+6
|
* Introduce `Cursor` type in `canvas`Libravatar Héctor Ramón Jiménez2020-04-291-4/+4
|
* Remove `Drawable` and rename `State` to `Program`Libravatar Héctor Ramón Jiménez2020-04-282-59/+42
|
* Remove `Layer` trait and simplify `Canvas`Libravatar Héctor Ramón Jiménez2020-04-191-2/+2
|
* Draft `Program` interactivity for `Canvas`Libravatar Héctor Ramón Jiménez2020-04-191-3/+2
|
* Simplify drawing logic in `clock` exampleLibravatar Héctor Ramón Jiménez2020-04-141-42/+32
|
* Implement `canvas::Path::circle` helper methodLibravatar Héctor Ramón Jiménez2020-04-141-1/+3
|
* Implement `From<Color>` for `canvas::Fill`Libravatar Héctor Ramón Jiménez2020-04-141-4/+1
|