summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 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
| |
* | Add `pick_list` function helper in `iced_pure::widget`Libravatar Héctor Ramón Jiménez2022-02-161-0/+15
| |
* | Add `overlay` support in `iced_pure` and port `PickList` :tada:Libravatar Héctor Ramón Jiménez2022-02-1610-240/+717
| |
* | Introduce `Tag` and `State` opaque types in `iced_pure::widget::tree`Libravatar Héctor Ramón Jiménez2022-02-1616-197/+101
| |
* | Implement `pure` version of the `tour` example :tada:Libravatar Héctor Ramón Jiménez2022-02-135-0/+753
| |
* | Implement `Space` in `iced_pure`Libravatar Héctor Ramón Jiménez2022-02-132-0/+133
| |
* | Implement `Radio` in `iced_pure`Libravatar Héctor Ramón Jiménez2022-02-133-1/+142
| |
* | Expose additional helpers in `iced::pure`Libravatar Héctor Ramón Jiménez2022-02-132-5/+30
| |
* | Introduce lifetime to `on_change` handler for `Toggler`Libravatar Héctor Ramón Jiménez2022-02-131-2/+2
| |
* | Implement `Toggler` in `iced_pure`Libravatar Héctor Ramón Jiménez2022-02-133-0/+138
| |
* | Implement `Slider` in `iced_pure`Libravatar Héctor Ramón Jiménez2022-02-134-167/+503
| |
* | Implement `Image` in `iced_pure`Libravatar Héctor Ramón Jiménez2022-02-134-25/+134
| |
* | Add `max_width` to `Column` in `iced_pure`Libravatar Héctor Ramón Jiménez2022-02-122-2/+23
| |
* | Implement missing `on_event` and `mouse_interaction` for `Checkbox` in ↵Libravatar Héctor Ramón Jiménez2022-02-122-2/+42
| | | | | | | | `iced_pure`
* | Implement pure version of `todos` example :tada:Libravatar Héctor Ramón Jiménez2022-02-1218-95/+916
| | | | | | | | | | | | | | | | The `Widget` trait in `iced_pure` needed to change a bit to make the implementation of `Element::map` possible. Specifically, the `children` method has been split into `diff` and `children_state`.
* | Implement `TextInput` in `iced_pure`Libravatar Héctor Ramón Jiménez2022-02-123-448/+730
| |
* | Implement `Scrollable` in `iced_pure`Libravatar Héctor Ramón Jiménez2022-02-125-378/+810
| |
* | Implement `Checkbox` in `iced_pure`Libravatar Héctor Ramón Jiménez2022-02-123-2/+97
| |
* | Reuse `Text` widget from `iced_native` in `iced_pure`Libravatar Héctor Ramón Jiménez2022-02-123-116/+19
| |
* | Implement `Container` widget in `iced_pure`Libravatar Héctor Ramón Jiménez2022-02-123-22/+305
| |
* | Use `TypeId` of `()` for `Column` and `Row` tags in `iced_pure`Libravatar Héctor Ramón Jiménez2022-02-112-4/+2
| |
* | Implement `Row` in `iced_pure`Libravatar Héctor Ramón Jiménez2022-02-112-0/+229
| |
* | Complete `Button` in `iced_pure`Libravatar Héctor Ramón Jiménez2022-02-111-2/+32
| |
* | Expose reusable `Button` logicLibravatar Héctor Ramón Jiménez2022-02-115-247/+228
| | | | | | | | ... and reuse it in `iced_pure`!
* | Allow pure widgets to borrow from `Application` data :tada:Libravatar Héctor Ramón Jiménez2022-02-1111-98/+103
| |
* | Expose function helpers to build widgets in `pure::widget`Libravatar Héctor Ramón Jiménez2022-02-113-7/+25
| | | | | | | | | | `button("Hello")` is easier to write and read than `Button::new("Hello")`.
* | Expose `iced_pure` through a `pure` feature in `iced`Libravatar Héctor Ramón Jiménez2022-02-117-14/+344
| | | | | | | | | | | | Besides exposing the `iced_pure` crate, enabling the `pure` feature also provides pure versions of both the `Application` and `Sandbox` traits! :tada:
* | Rename `iced_virtual` to `iced_pure`Libravatar Héctor Ramón Jiménez2022-02-1115-15/+16
| | | | | | | | `virtual` is a reserved keyword in Rust :grimacing: