summaryrefslogtreecommitdiffstats
path: root/examples (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fix flex layout of `Fill` elements in a `Shrink` cross axisLibravatar Héctor Ramón Jiménez2024-09-211-3/+37
| | | | | | Instead of collapsing, the `Fill` elements will fill the cross space allocated by the other `Shrink` elements present in the container.
* Move `wgpu` re-export to root moduleLibravatar Héctor Ramón Jiménez2024-09-201-1/+1
| | | | | This seems to fix a `cargo doc` performance issue; and it makes more sense anyways.
* Update `wgpu` to `22.0`Libravatar Héctor Ramón Jiménez2024-09-203-0/+5
|
* Update `wgpu` to `0.20.1`Libravatar Héctor Ramón Jiménez2024-09-202-0/+10
|
* Implement some `From` traits for `text_input::Id`Libravatar Héctor Ramón Jiménez2024-09-183-10/+4
|
* Fix unnecessary `to_string` call in `changelog` toolLibravatar Héctor Ramón Jiménez2024-09-181-4/+1
|
* Enable `image` feature in `custom_shader` exampleLibravatar Héctor Ramón Jiménez2024-09-181-1/+1
|
* Fix deserialization of `PullRequest` with empty body in `changelog` toolLibravatar Héctor Ramón Jiménez2024-09-182-4/+9
|
* Fix `Changed` entries considered as `Added` in `changelog` toolLibravatar Héctor Ramón Jiménez2024-09-181-2/+2
|
* Fix `Changelog::parse` when multiple `#` present in entryLibravatar Héctor Ramón Jiménez2024-09-181-1/+1
|
* Fix duplicated contributions in `changelog` toolLibravatar Héctor Ramón Jiménez2024-09-181-3/+9
|
* Add `tracing-subscriber` to `changelog` toolLibravatar Héctor Ramón Jiménez2024-09-182-0/+3
|
* Save `CHANGELOG.md` after each review in `changelog` toolLibravatar Héctor Ramón Jiménez2024-09-183-66/+99
|
* Implement a `changelog-generator` tool and exampleLibravatar Héctor Ramón Jiménez2024-09-175-0/+755
|
* Fix examples/multitouch dividing by zeroLibravatar JustSoup3212024-09-131-1/+1
|
* Add `label` method to `Toggler`Libravatar Héctor Ramón Jiménez2024-09-113-3/+6
|
* Add disabled state and `on_toggle` handler to `Toggler`Libravatar Héctor Ramón Jiménez2024-09-113-16/+9
| | | | Co-authored-by: Your Name here only <krishnsundaram@gmail.com>
* Add `index.html` to `download_progress` exampleLibravatar Skygrango2024-09-101-0/+12
|
* Fix `download_progress` and make it work on WasmLibravatar Héctor Ramón Jiménez2024-09-103-77/+48
| | | | Co-authored-by: Skygrango <skygrango@gmail.com>
* Use `key_binding` in `editor` exampleLibravatar Héctor Ramón Jiménez2024-09-101-12/+14
| | | | Fixes #2573.
* Merge pull request #2549 from JL710/patch-3Libravatar Héctor Ramón2024-09-071-9/+0
|\ | | | | Remove out of date comment from custom-widget example
| * Remove out of date comment from custom-widget exampleLibravatar JL7102024-08-141-9/+0
| |
* | Deprecate the `component` widgetLibravatar Héctor Ramón Jiménez2024-09-052-159/+0
| |
* | Add `text::Wrapping` supportLibravatar Héctor Ramón Jiménez2024-09-043-3/+21
| | | | | | | | Co-authored-by: Neeraj Jaiswal <neerajj85@gmail.com>
* | Merge pull request #2535 from bungoboingo/text-input-alignmentLibravatar Héctor Ramón2024-08-241-1/+2
|\ \ | | | | | | Implement `align_x` for `TextInput`
| * | Implement `align_x` for `TextInput`Libravatar Shan2024-08-241-1/+2
| | | | | | | | | | | | Co-authored-by: Shan <shankern@protonmail.com>
* | | Merge pull request #2555 from mtkennerly/feature/pane-grid-compact-controlsLibravatar Héctor Ramón2024-08-241-5/+17
|\ \ \ | | | | | | | | Add compact variant for pane grid controls
| * | | Add compact variant for pane grid controlsLibravatar mtkennerly2024-08-221-5/+17
| |/ /
* / / Make `RichText` generic over data structureLibravatar Héctor Ramón Jiménez2024-08-221-9/+9
|/ / | | | | | | ... and decouple `markdown::parse` from theming
* / Fix cursor passthrough in `Stack` during `draw`Libravatar Héctor Ramón Jiménez2024-08-141-13/+15
|/
* Revert `window::close` producing a `window::Id`Libravatar Héctor Ramón Jiménez2024-08-122-7/+3
| | | | | | 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-122-3/+7
|
* Merge pull request #2547 from meithecatte/do-not-segfaultLibravatar Héctor Ramón2024-08-121-1/+1
|\ | | | | iced_winit: drop Clipboard before Window
| * Fix `integration` exampleLibravatar Héctor Ramón Jiménez2024-08-121-1/+1
| |
* | Merge pull request #2536 from meithecatte/editor-clippingLibravatar Héctor Ramón2024-08-121-8/+11
|\ \ | |/ |/| text_editor: Avoid rendering text outside the border
| * Focus `text_editor` at start-up in `editor` exampleLibravatar Héctor Ramón Jiménez2024-08-121-8/+11
| |
* | Introduce `black_box` and `chain` in `widget::operation`Libravatar Héctor Ramón Jiménez2024-08-081-2/+2
| |
* | Implement `row::Wrapping` widgetLibravatar Héctor Ramón Jiménez2024-08-061-3/+4
| | | | | | | | | | | | | | | | | | If you have a `Row`, simply call `Row::wrap` at the end to turn it into a `Row` that will wrap its contents. The original alignment of the `Row` is preserved per row wrapped.
* | Invert Earth's rotation in `solar_system` exampleLibravatar Héctor Ramón Jiménez2024-08-041-1/+1
| |
* | Introduce `Image` struct in `core::image`Libravatar Héctor Ramón Jiménez2024-08-041-12/+3
| |
* | Increase Earth's spin a bit in `solar_system` exampleLibravatar Héctor Ramón Jiménez2024-08-041-1/+1
| |
* | Remove unnecessary `with_save` calls in `solar_system` exampleLibravatar Héctor Ramón Jiménez2024-08-041-25/+21
| |
* | Showcase `canvas` image support in `solar_system` exampleLibravatar Héctor Ramón Jiménez2024-08-045-23/+41
| |
* | Implement `From<&Handle>` for `image::Handle`Libravatar Héctor Ramón Jiménez2024-08-031-19/+29
|/
* Return `window::Id` in `window::open`Libravatar Héctor Ramón Jiménez2024-07-301-4/+7
|
* Simplify `highlight` method for `text_editor` widgetLibravatar Héctor Ramón Jiménez2024-07-282-21/+10
|
* Enable Markdown highlighting in `markdown` exampleLibravatar Héctor Ramón Jiménez2024-07-282-19/+18
|
* Add `placeholder` support to `text_editor` widgetLibravatar Héctor Ramón Jiménez2024-07-241-0/+1
|
* Unify `Link` and `Message` generics in `text::Rich`Libravatar Héctor Ramón Jiménez2024-07-241-5/+2
|
* Introduce `markdown::Settings`Libravatar Héctor Ramón Jiménez2024-07-211-1/+5
|