summaryrefslogtreecommitdiffstats
path: root/examples (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Remove unused fields in `pokedex` exampleLibravatar Héctor Ramón Jiménez2021-12-071-4/+1
|
* Remove unused field in `solar_system` exampleLibravatar Héctor Ramón Jiménez2021-12-071-2/+0
|
* Hide `Box` allocation in `component::view`Libravatar Héctor Ramón Jiménez2021-11-291-1/+1
| | | | ... we may be able to avoid it with generics in the future.
* Draft `component` example :tada:Libravatar Héctor Ramón Jiménez2021-11-292-0/+191
|
* Add checkbox text_color stylingLibravatar Daniel May2021-11-141-0/+1
|
* Merge pull request #1106 from ↵Libravatar Héctor Ramón2021-11-104-11/+9
|\ | | | | | | | | RamType0/RemoveUnnecessaryStringAllocationInExample Remove unnecessary String allocation
| * Fix formatting with `cargo fmt`Libravatar Héctor Ramón Jiménez2021-11-101-3/+1
| |
| * Remove unnecessary String allocationLibravatar Ram.Type-02021-11-024-9/+9
| | | | | | | | Remove unnecessary String allocation by passing &format! or &x.to_string as impl Into<String>
* | Rename `Renderer::present` to `with_primitives`Libravatar Héctor Ramón Jiménez2021-11-052-2/+2
| |
* | Rename `fill_rectangle` to `fill_quad` in `Renderer`Libravatar Héctor Ramón Jiménez2021-11-041-9/+10
| |
* | Merge branch 'master' into remove-renderer-traitsLibravatar Héctor Ramón Jiménez2021-10-311-2/+4
|\|
| * Update wgpu to 0.11Libravatar Poly2021-10-131-2/+4
| |
* | Reintroduce `Box` for `style_sheet` in `TextInput`Libravatar Héctor Ramón Jiménez2021-10-311-3/+3
| |
* | Reintroduce `Box` for `style_sheet` in `Slider`Libravatar Héctor Ramón Jiménez2021-10-312-4/+4
| |
* | Reintroduce `Box` for `style_sheet` in `Scrollable`Libravatar Héctor Ramón Jiménez2021-10-313-6/+6
| |
* | Reintroduce `Box` for `style_sheet` in `Radio`Libravatar Héctor Ramón Jiménez2021-10-313-6/+6
| |
* | Reintroduce `Box` for `style_sheet` in `Container`Libravatar Héctor Ramón Jiménez2021-10-316-13/+13
| |
* | Reintroduce `Box` for `style_sheet` in `Checkbox`Libravatar Héctor Ramón Jiménez2021-10-311-3/+3
| |
* | Reintroduce `Box` for `style_sheet` in `Button`Libravatar Héctor Ramón Jiménez2021-10-317-22/+22
| |
* | Rewrite cursor icon logic for `integration_wgpu` exampleLibravatar Héctor Ramón Jiménez2021-10-311-5/+5
| |
* | Rewrite cursor icon logic for `integration_opengl` exampleLibravatar Héctor Ramón Jiménez2021-10-311-6/+5
| |
* | Remove `widget` module re-exports in `iced_native`Libravatar Héctor Ramón Jiménez2021-10-312-9/+6
| |
* | Migrate `geometry` example to new `Renderer` APILibravatar Héctor Ramón Jiménez2021-10-301-95/+95
| |
* | Remove `Renderer` trait for `Checkbox`Libravatar Héctor Ramón Jiménez2021-10-211-3/+3
| |
* | Wire up styling to `Radio` in `iced_native`Libravatar Héctor Ramón Jiménez2021-10-203-6/+6
| |
* | Implement `Widget::draw` for `TextInput`Libravatar Héctor Ramón Jiménez2021-10-201-3/+3
| |
* | Wire up styling to `Slider` in `iced_native`Libravatar Héctor Ramón Jiménez2021-10-202-4/+4
| |
* | Introduce `mouse_interaction` method to `Widget` traitLibravatar Héctor Ramón Jiménez2021-10-182-2/+0
| |
* | Wire up styling to `Button` in `iced_native`Libravatar Héctor Ramón Jiménez2021-10-187-40/+36
| |
* | Implement `Widget::draw` for `custom_widget` exampleLibravatar Héctor Ramón Jiménez2021-10-182-22/+19
| |
* | Wire up `container` styling to `iced_native`Libravatar Héctor Ramón Jiménez2021-10-186-21/+31
| |
* | Move `Defaults` from `iced_graphics` to `iced_native`Libravatar Héctor Ramón Jiménez2021-10-182-9/+9
| |
* | Draw scrollbar in `Widget::draw` for `Scrollable`Libravatar Héctor Ramón Jiménez2021-10-183-6/+6
| |
* | Remove trait-specific draw logic in `iced_native`Libravatar Héctor Ramón Jiménez2021-10-144-130/+136
|/
* Update README.mdLibravatar sundyli2021-10-041-1/+1
|
* Refactor alignment types into an `alignment` moduleLibravatar Héctor Ramón Jiménez2021-09-2019-93/+91
|
* Introduce and use `CrossAlign` enum for `Column` and `Row`Libravatar Héctor Ramón Jiménez2021-09-2018-62/+67
|
* Revert system menus supportLibravatar Héctor Ramón Jiménez2021-09-154-143/+0
| | | | | | The current implementation has some important issues on Windows. We will reintroduce the feature once we figure them out! I have kept some of the changes in #945, like the new `keyboard::Modifiers` powered by `bitflags`.
* Make `Command` implementations platform-specificLibravatar Héctor Ramón Jiménez2021-09-0213-95/+39
| | | | | | | | | 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 spaces around `iced_wgpu` feature list in `Cargo.toml` of `integration_wgpu`Libravatar Héctor Ramón Jiménez2021-08-251-1/+1
|
* wgpu: Update to 0.10Libravatar Poly2021-08-193-18/+20
|
* Update `README` in `examples` directoryLibravatar Héctor Ramón Jiménez2021-08-132-3/+4
|
* Fix `panic!` warnings in `integration_opengl` exampleLibravatar Héctor Ramón Jiménez2021-08-132-2/+8
|
* Fix formatting of `integration_opengl` exampleLibravatar Héctor Ramón Jiménez2021-08-131-3/+9
|
* Rename `integration` examplesLibravatar Héctor Ramón Jiménez2021-08-1312-5/+7
|
* Add integration_gl exampleLibravatar Tamás Szelei2021-08-135-0/+407
|
* Merge pull request #667 from BillyDM/wgpu_outdatedframeLibravatar Héctor Ramón2021-08-051-44/+55
|\ | | | | Don't panic when wgpu swapchain frame is outdated
| * add custom error for Compositor::draw()Libravatar Billy Messenger2021-07-221-2/+4
| |
| * Merge branch 'master' of https://github.com/hecrj/iced into wgpu_outdatedframeLibravatar Billy Messenger2021-07-2233-217/+1040
| |\
| * | don't panic when swapchain frame is outdatedLibravatar Billy Messenger2020-12-161-44/+53
| | |