summaryrefslogtreecommitdiffstats
path: root/examples/integration/src/controls.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add helper functions for alignment to `widget` moduleLibravatar Héctor Ramón Jiménez2025-01-241-6/+5
|
* Re-export variants of `Length` and `alignment` typesLibravatar Héctor Ramón Jiménez2024-07-121-3/+2
|
* Introduce helper methods for alignment for all widgetsLibravatar Héctor Ramón Jiménez2024-07-121-2/+1
|
* Replace `Command` with a new `Task` API with chain supportLibravatar Héctor Ramón Jiménez2024-06-141-3/+3
|
* fix: run `cargo fmt`Libravatar Richard Custodio2024-03-181-3/+1
|
* refactor: replace `text(format!(` with `text` macroLibravatar Richard Custodio2024-03-181-1/+1
|
* Move `Theme` type to `iced_core`Libravatar Héctor Ramón Jiménez2024-03-071-2/+1
|
* Simplify theming for `Text` widgetLibravatar Héctor Ramón Jiménez2024-03-041-57/+46
|
* Convert `Renderer::Theme` to generic `Widget` typeLibravatar Héctor Ramón Jiménez2024-01-211-2/+3
|
* Make `Shrink` have priority over `Fill` in layoutLibravatar Héctor Ramón Jiménez2024-01-041-23/+16
|
* Fix `clippy::default_trait_access`Libravatar Héctor Ramón Jiménez2023-09-201-1/+1
|
* Merge branch 'master' into advanced-textLibravatar Héctor Ramón Jiménez2023-04-171-5/+4
|\
* | Rename `iced_native` to `iced_runtime`Libravatar Héctor Ramón Jiménez2023-03-051-1/+1
| |
* | Create `iced_widget` subcrate and re-organize the whole codebaseLibravatar Héctor Ramón Jiménez2023-03-041-4/+6
| |
* | Remove `iced_glow`, `glyph-brush`, and `wgpu_glyph` dependenciesLibravatar Héctor Ramón Jiménez2023-02-241-0/+112
|/
* Rename `integration` examplesLibravatar Héctor Ramón Jiménez2021-08-131-110/+0
|
* Add `clipboard` argument to `Application::update`Libravatar Héctor Ramón Jiménez2021-03-111-3/+8
|
* Add `step` member to slider widgetsLibravatar Sebastian Zivota2020-06-111-15/+24
| | | | | | Both the native and the web slider now have a member `step` to control the least possible change of the slider's value. It defaults to 1.0 for all sliders and can be adjusted with the step method.
* Add on_release message to Slider (#378)Libravatar Duncan Freeman2020-06-081-1/+1
| | | | | | | | | | | * Add on_finish callback to Slider * Fix formatting * Rename Slider's on_finish to on_release, make the message simply an event without data * Satisfy Clone impl requirement on Message in integration test * Only call on_release after dragging a slider
* Simplify `integration` example with `Program`Libravatar Héctor Ramón Jiménez2020-05-211-40/+37
|
* remove explicit lifetimes in integration exampleLibravatar Kai Mast2020-03-271-4/+1
|
* Add `integration` exampleLibravatar Héctor Ramón Jiménez2020-02-091-0/+102
It showcases how to integrate iced in an existing graphical application.