summaryrefslogtreecommitdiffstats
path: root/examples (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 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
| | |
* | | Fix typo in `integration` exampleLibravatar Héctor Ramón Jiménez2021-08-041-1/+1
| | |
* | | wgpu: Use the preferred texture format of the surfaceLibravatar Tilmann Meyer2021-08-031-16/+19
| |/ |/| | | | | Signed-off-by: Tilmann Meyer <me@atiltedtree.dev>
* | Merge pull request #776 from AldoMX/masterLibravatar Héctor Ramón2021-07-221-1/+4
|\ \ | | | | | | Added `select_all` method to `TextInput`.
| * | Add newline to `todos` exampleLibravatar Héctor Ramón Jiménez2021-07-221-0/+1
| | | | | | | | | | | | ... just for readability
| * | Added `select_all` method to `TextInput`.Libravatar Aldo Fregoso2021-03-131-1/+3
| | |
* | | Introduce `placeholder_color` to `pick_list::Style`Libravatar Héctor Ramón Jiménez2021-07-221-0/+1
| | |
* | | feat: add placeholder to pick_list exampleLibravatar Jon Pacheco2021-07-221-4/+5
| | |
* | | Merge pull request #929 from TimUntersberger/winit-improvLibravatar Héctor Ramón2021-07-221-0/+5
|\ \ \ | | | | | | | | feat: add position to window settings