summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Use application lifetime in `Into<Element>` implementation for `&str`Libravatar Héctor Ramón Jiménez2022-03-221-2/+1
|
* Implement `pure` version of `QRCode` widgetLibravatar Héctor Ramón Jiménez2022-03-213-0/+73
|
* Restore `TextInput::draw` helperLibravatar Héctor Ramón Jiménez2022-03-181-12/+24
| | | | This helper should be unnecessary in the future.
* Reintroduce generic `Message` type for `canvas::Program`Libravatar Héctor Ramón Jiménez2022-03-1810-68/+55
| | | | | As it is useful to make the `Message` completely free in many implementations.
* Export widget modules in `iced_pure`Libravatar Héctor Ramón Jiménez2022-03-1631-232/+378
| | | | ... and fix collisions with the new `helpers`
* Implement `pure` version of `pane_grid` example :tada:Libravatar Héctor Ramón Jiménez2022-03-141-13/+12
|
* Implement `pure` version of `PaneGrid` widgetLibravatar Héctor Ramón Jiménez2022-03-1413-408/+2098
|
* Fix incorrect `layout` in `Widget::overlay` for `pure::Responsive`Libravatar Héctor Ramón Jiménez2022-03-141-5/+21
|
* Implement `pure` version of `ProgressBar` widgetLibravatar Héctor Ramón Jiménez2022-03-102-0/+114
|
* Implement `pure` version of `Rule` widgetLibravatar Héctor Ramón Jiménez2022-03-103-6/+116
|
* Implement `Widget::tag` for `pure::Canvas`Libravatar Héctor Ramón Jiménez2022-03-091-0/+4
|
* Implement `pure` version of `game_of_life` example :tada:Libravatar Héctor Ramón Jiménez2022-03-097-3/+1266
|
* Implement `pure` version of `Canvas` widgetLibravatar Héctor Ramón Jiménez2022-03-097-1/+355
|
* Use associated type for `Message` in a `canvas::Program`Libravatar Héctor Ramón Jiménez2022-03-097-24/+37
|
* Remove redundant `widget` modules in subcratesLibravatar Héctor Ramón Jiménez2022-03-0962-783/+228
| | | | Instead, we can define the type aliases just once in the root crate!
* Remove superfluous files from `pure` examplesLibravatar Héctor Ramón Jiménez2022-03-087-120/+0
|
* Implement `pure::Responsive` in `iced_lazy`Libravatar Héctor Ramón Jiménez2022-03-073-3/+398
|
* Introduce `rebuild_element` helper in `lazy::pure::Component`Libravatar Héctor Ramón Jiménez2022-03-071-26/+16
|
* Initialize `lazy::pure::Component` view properlyLibravatar Héctor Ramón Jiménez2022-03-071-21/+26
| | | | ... during `children` and `diff` in the `Widget` implementation
* Merge branch 'master' into virtual-widgetsLibravatar Héctor Ramón Jiménez2022-03-073-20/+52
|\
| * Merge pull request #1264 from tarkah/canvas/clipLibravatar Héctor Ramón2022-03-051-0/+21
| |\ | | | | | | Add clip to canvas
| | * Use `Rectangle` directly in `Frame::with_clip`Libravatar Héctor Ramón Jiménez2022-03-021-21/+11
| | |
| | * Add doc commentLibravatar Cory Forsstrom2022-02-231-1/+8
| | |
| | * Add with_clip for canvasLibravatar Cory Forsstrom2022-02-231-0/+24
| | |
| * | Merge pull request #1270 from iced-rs/skip-canvas-drawLibravatar Héctor Ramón2022-03-011-0/+5
| |\ \ | | | | | | | | Skip `Canvas::draw` if `bounds` have no logical pixels
| | * | Skip `Canvas::draw` if `bounds` have no logical pixelsLibravatar Héctor Ramón Jiménez2022-02-281-0/+5
| | | |
| * | | Fix overlay flickering after `Application::update`Libravatar Héctor Ramón Jiménez2022-03-011-20/+26
| |/ /
* | | Merge branch 'master' into virtual-widgetsLibravatar Héctor Ramón Jiménez2022-03-0758-920/+457
|\| |
| * | Merge pull request #1263 from iced-rs/remove-hash-layoutLibravatar Héctor Ramón2022-02-2335-636/+105
| |\ \ | | | | | | | | Remove `hash_layout` method from `Widget` trait
| | * | Remove `hash_layout` method from `Widget` traitLibravatar Héctor Ramón Jiménez2022-02-2335-636/+105
| |/ /
| * | Merge pull request #1219 from Alch-Emi/image-modesLibravatar Héctor Ramón2022-02-237-57/+318
| |\ \ | | | | | | | | ContentFit support for images
| | * | Showcase only `Contain`, `Cover`, and `Fill` image modes in `tour`Libravatar Héctor Ramón Jiménez2022-02-231-4/+4
| | | |
| | * | Keep using Ferris in the image section of the `tour`Libravatar Héctor Ramón Jiménez2022-02-161-26/+7
| | | | | | | | | | | | | | | | Wide ferris is cute :3
| | * | Hash `content_fit` in `hash_layout` of `Image` and `Svg`Libravatar Héctor Ramón Jiménez2022-02-162-0/+2
| | | |
| | * | Remove redundant `layout.bounds()` calls in `Image` and `Svg`Libravatar Héctor Ramón Jiménez2022-02-162-12/+10
| | | |
| | * | Add `ContentFit` support to `Svg` widgetLibravatar Héctor Ramón Jiménez2022-02-162-17/+67
| | | |
| | * | Expose `ContentFit` in rootLibravatar Héctor Ramón Jiménez2022-02-163-7/+5
| | | |
| | * | Center `Image` inside available bounds when possibleLibravatar Héctor Ramón Jiménez2022-02-161-9/+14
| | | |
| | * | Rename `Image::fit` to `content_fit`Libravatar Héctor Ramón Jiménez2022-02-162-8/+12
| | | | | | | | | | | | | | | | ... just for consistency!
| | * | Make documentation of `Image::fit` consistentLibravatar Héctor Ramón Jiménez2022-02-161-1/+1
| | | |
| | * | Use a new clipping layer only when necessary in `Image::draw`Libravatar Héctor Ramón Jiménez2022-02-161-2/+11
| | | |
| | * | Rename `image` module to `content_fit` in `iced_core`Libravatar Héctor Ramón Jiménez2022-02-162-11/+11
| | | | | | | | | | | | | | | | Since we are just exposing the `ContentFit` type and not the module `image` at all.
| | * | Add support for `ContentFit` for `Image`Libravatar Emi Simpson2022-02-166-38/+252
| | | |
| * | | Merge pull request #1262 from nicksenger/fix/overlay-layoutsLibravatar Héctor Ramón2022-02-231-4/+9
| |\ \ \ | | |/ / | |/| | Fix: overlay layout for `Responsive`
| | * | fix: overlay layout for `Responsive`Libravatar Nick Senger2022-02-221-4/+9
| |/ /
* | | Fix `subscription` for `iced::pure::Application`Libravatar Héctor Ramón Jiménez2022-02-201-0/+4
| | |
* | | Implement `pure` version of `component` exampleLibravatar Héctor Ramón Jiménez2022-02-173-0/+180
| | |
* | | Implement `pure::Component` in `iced_lazy`Libravatar Héctor Ramón Jiménez2022-02-1713-21/+530
| | |
* | | Implement `pure` version of `pick_list` example :tada:Libravatar Héctor Ramón Jiménez2022-02-164-0/+139
| | |
* | | Fix `overlay` translation for `Scrollable` in `iced_pure`Libravatar Héctor Ramón Jiménez2022-02-161-6/+19
| | |