summaryrefslogtreecommitdiffstats
path: root/examples/tour (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Introduce support for disabling a `checkbox`Libravatar Alexander van Saase2024-02-011-16/+17
|
* Convert `Renderer::Theme` to generic `Widget` typeLibravatar Héctor Ramón Jiménez2024-01-211-2/+2
|
* Introduce `Widget::size_hint` and fix further layout inconsistenciesLibravatar Héctor Ramón Jiménez2024-01-101-1/+0
|
* Make `Shrink` have priority over `Fill` in layoutLibravatar Héctor Ramón Jiménez2024-01-041-5/+1
|
* Refactor texture image filteringLibravatar Héctor Ramón Jiménez2023-11-111-7/+37
| | | | | | - Support only `Linear` or `Nearest` - Simplify `Layer` groups - Move `FilterMethod` to `Image` and `image::Viewer`
* Fix `clippy::semicolon_if_nothing_returned`Libravatar Héctor Ramón Jiménez2023-09-201-1/+1
|
* Chore: Apply some minor clippy fixesLibravatar Yuri Astrakhan2023-09-191-1/+1
| | | | | | * Use `.elapsed()` for duration * Use direct iteration without calling `.iter()` and the like * order fields in the `Text` struct creation as declared
* Merge branch 'master' into explicit-text-cachingLibravatar Héctor Ramón Jiménez2023-09-103-5/+22
|\
| * Change init_with_level to init in examplesLibravatar Thomas2023-09-092-2/+1
| |
| * Add logging for web in tour exampleLibravatar Thomas2023-09-092-0/+12
| |
| * Add webgl feature for web examplesLibravatar Thomas2023-09-091-0/+4
| |
| * Host GIFs and video examples in `iced.rs`Libravatar Héctor Ramón Jiménez2023-09-071-2/+2
| | | | | | | | RIP Gfycat
| * Use workspace dependencies and package inheritanceLibravatar Héctor Ramón Jiménez2023-09-042-3/+5
| | | | | | | | | | | | We are also taking this as a chance to synchronize the versions of all the crates! Because of this, we will skip the `0.11` version.
* | Implement explicit text caching in the widget state treeLibravatar Héctor Ramón Jiménez2023-08-301-2/+2
|/
* Keep `tour` buttons solidLibravatar Héctor Ramón Jiménez2023-05-191-50/+5
| | | | The gradients feel a bit out of place currently.
* Implement `custom` helper for `theme::Button`Libravatar Héctor Ramón Jiménez2023-05-191-8/+6
|
* Remove `Builder` abstractions for gradientsLibravatar Héctor Ramón Jiménez2023-05-191-14/+16
|
* Added support for gradients as background variants + other optimizations.Libravatar Bingus2023-05-112-9/+51
|
* Merge branch 'master' into advanced-textLibravatar Héctor Ramón Jiménez2023-04-171-19/+65
|\
| * Rename `on_change` to `on_input` for `TextInput`Libravatar Héctor Ramón Jiménez2023-04-121-1/+1
| |
| * Introduce disabled state for `TextInput`Libravatar Dan Mishin2023-04-121-7/+4
| |
| * Fix `current` step in `tour`Libravatar Héctor Ramón Jiménez2023-04-111-1/+1
| |
| * Move `ICON_FONT` constant in `tour` to `text_input` helperLibravatar Héctor Ramón Jiménez2023-04-111-5/+5
| |
| * Collapse `Font` import in `tour` exampleLibravatar Héctor Ramón Jiménez2023-04-111-2/+1
| |
| * Rename `IconPosition` to `Side` in `text_input`Libravatar Héctor Ramón Jiménez2023-04-111-1/+1
| |
| * Move `Icon` layout logic to `layout` in `text_input`Libravatar Héctor Ramón Jiménez2023-04-111-2/+3
| | | | | | | | Also add `Icon::spacing` field.
| * Use `f32` for `Icon::size` and remove unnecessary conversionsLibravatar Héctor Ramón Jiménez2023-04-111-1/+1
| |
| * Removed text_input example in favor for TourLibravatar Casper Storm2023-04-112-12/+66
|/
* Use `f32` in `Length::Units` and rename it to `Fixed`Libravatar Héctor Ramón Jiménez2023-02-171-4/+4
|
* Fix: Clippy lint 'uninlined_format_args'Libravatar 13r0ck2023-01-271-4/+4
|
* Reintroduce `Element::explain`Libravatar Héctor Ramón Jiménez2022-08-261-4/+12
|
* Draft widget operationsLibravatar Héctor Ramón Jiménez2022-07-281-4/+2
|
* Replace stateful widgets with new `iced_pure` APILibravatar Héctor Ramón Jiménez2022-07-271-347/+187
|
* Add `theme::Application` styling support to `Sandbox`Libravatar Héctor Ramón Jiménez2022-07-081-59/+9
|
* Merge branch 'master' into themingLibravatar Héctor Ramón Jiménez2022-07-081-2/+7
|\
| * Update web instructions of the `tour` exampleLibravatar Héctor Ramón Jiménez2022-06-101-2/+7
| |
* | Introduce `StyleSheet` for `Text` widgetLibravatar Héctor Ramón Jiménez2022-06-291-2/+2
| |
* | Add "Theming" section to the `tour` exampleLibravatar Héctor Ramón Jiménez2022-05-261-10/+60
| |
* | Implement theme styling for `Slider`Libravatar Héctor Ramón Jiménez2022-05-261-1/+1
| |
* | Draft first-class `Theme` supportLibravatar Héctor Ramón Jiménez2022-05-141-38/+11
|/ | | | RFC: https://github.com/iced-rs/rfcs/pull/6
* Merge branch 'master' into virtual-widgetsLibravatar Héctor Ramón Jiménez2022-03-071-21/+59
|\
| * 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
| * Expose `ContentFit` in rootLibravatar Héctor Ramón Jiménez2022-02-161-4/+3
| |
| * Rename `Image::fit` to `content_fit`Libravatar Héctor Ramón Jiménez2022-02-161-2/+2
| | | | | | | | ... just for consistency!
| * Add support for `ContentFit` for `Image`Libravatar Emi Simpson2022-02-161-20/+78
| |
* | Expose reusable `Button` logicLibravatar Héctor Ramón Jiménez2022-02-111-1/+1
|/ | | | ... and reuse it in `iced_pure`!
* Update Rust edition to 2021 :tada:Libravatar Héctor Ramón Jiménez2022-02-091-1/+1
|
* [ImgBot] Optimize imagesLibravatar ImgBotApp2022-02-071-0/+0
| | | | | | | | | | | | | | | | | | | | | *Total -- 967.49kb -> 703.99kb (27.24%) /docs/images/radio.png -- 5.29kb -> 1.58kb (70.18%) /docs/images/text_input.png -- 3.18kb -> 1.27kb (60.17%) /docs/images/checkbox.png -- 5.56kb -> 2.22kb (60.17%) /examples/color_palette/screenshot.png -- 102.74kb -> 43.75kb (57.42%) /examples/tour/images/ferris.png -- 32.29kb -> 15.91kb (50.73%) /docs/graphs/ecosystem.png -- 124.13kb -> 67.44kb (45.67%) /docs/graphs/iced.png -- 97.75kb -> 53.27kb (45.5%) /docs/graphs/native.png -- 57.90kb -> 33.67kb (41.85%) /docs/images/text.png -- 4.95kb -> 2.99kb (39.61%) /docs/graphs/foundations.png -- 18.19kb -> 11.19kb (38.46%) /examples/scrollable/screenshot.png -- 144.78kb -> 102.53kb (29.18%) /examples/svg/resources/tiger.svg -- 67.02kb -> 64.50kb (3.76%) /docs/logo.svg -- 1.37kb -> 1.35kb (1.57%) /docs/images/todos_desktop.jpg -- 302.36kb -> 302.33kb (0.01%) Signed-off-by: ImgBotApp <ImgBotHelp@gmail.com>
* Point `iced_web` links to the new standalone repositoryLibravatar Héctor Ramón Jiménez2022-01-311-2/+2
|