summaryrefslogtreecommitdiffstats
path: root/examples (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Show `Loading` screen when refreshing in `system_information` exampleLibravatar Héctor Ramón Jiménez2022-05-041-0/+2
|
* Expose `system` module through feature flagLibravatar Héctor Ramón Jiménez2022-04-301-2/+2
|
* Simplify the `QueryInformation` ActionLibravatar Richard2022-04-272-13/+7
|
* Rename `system::information` to `fetch_information`Libravatar Richard2022-04-271-2/+2
|
* Add memory usage to `Information` structLibravatar Richard2022-04-261-6/+37
|
* Improve example readabilityLibravatar Richard2022-04-261-8/+9
|
* Add graphics information to exampleLibravatar Richard2022-04-261-0/+12
|
* Add unformated memory total to exampleLibravatar Richard2022-04-261-1/+7
|
* Add `system_information` exampleLibravatar Richard2022-04-262-0/+129
|
* Merge pull request #1284 from iced-rs/virtual-widgetsLibravatar Héctor Ramón2022-03-2321-4/+3406
|\ | | | | Stateless widgets
| * Reintroduce generic `Message` type for `canvas::Program`Libravatar Héctor Ramón Jiménez2022-03-186-17/+6
| | | | | | | | | | 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-168-18/+16
| | | | | | | | ... 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-142-0/+448
| |
| * Implement `pure` version of `game_of_life` example :tada:Libravatar Héctor Ramón Jiménez2022-03-095-0/+1262
| |
| * Use associated type for `Message` in a `canvas::Program`Libravatar Héctor Ramón Jiménez2022-03-095-5/+15
| |
| * 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-071-2/+2
| |
| * Merge branch 'master' into virtual-widgetsLibravatar Héctor Ramón Jiménez2022-03-073-34/+61
| |\
| * | Implement `pure` version of `component` exampleLibravatar Héctor Ramón Jiménez2022-02-172-0/+179
| | |
| * | Implement `pure` version of `pick_list` example :tada:Libravatar Héctor Ramón Jiménez2022-02-163-0/+138
| | |
| * | Implement `pure` version of the `tour` example :tada:Libravatar Héctor Ramón Jiménez2022-02-134-0/+752
| | |
| * | Add `max_width` to `Column` in `iced_pure`Libravatar Héctor Ramón Jiménez2022-02-121-1/+9
| | |
| * | Implement missing `on_event` and `mouse_interaction` for `Checkbox` in ↵Libravatar Héctor Ramón Jiménez2022-02-121-1/+1
| | | | | | | | | | | | `iced_pure`
| * | Implement pure version of `todos` example :tada:Libravatar Héctor Ramón Jiménez2022-02-124-0/+650
| | | | | | | | | | | | | | | | | | | | | | | | 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`.
| * | Reuse `Text` widget from `iced_native` in `iced_pure`Libravatar Héctor Ramón Jiménez2022-02-121-1/+1
| | |
| * | Expose reusable `Button` logicLibravatar Héctor Ramón Jiménez2022-02-112-2/+2
| | | | | | | | | | | | ... and reuse it in `iced_pure`!
| * | Expose function helpers to build widgets in `pure::widget`Libravatar Héctor Ramón Jiménez2022-02-111-5/+6
| | | | | | | | | | | | | | | `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-112-14/+8
| | | | | | | | | | | | | | | | | | 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-114-8/+8
| | | | | | | | | | | | `virtual` is a reserved keyword in Rust :grimacing:
| * | Implement `Into<Element>` for `&'static str` in `iced_virtual`Libravatar Héctor Ramón Jiménez2022-02-101-10/+3
| | |
| * | Draft virtual `Button`, `Column`, and `Text`Libravatar Héctor Ramón Jiménez2022-02-104-0/+101
| | | | | | | | | | | | ... as well as a very naive diffing strategy!
* | | Merge pull request #1288 from tarkah/update-palette-0.6Libravatar Héctor Ramón2022-03-172-18/+18
|\ \ \ | | | | | | | | update palette to 0.6
| * | | update palette to 0.6Libravatar Cory Forsstrom2022-03-162-18/+18
| | | |
* | | | Remove unnecessary `unreachable!` in `download_progress` exampleLibravatar Héctor Ramón Jiménez2022-03-151-3/+1
| |_|/ |/| |
* | | Remove `hash_layout` method from `Widget` traitLibravatar Héctor Ramón Jiménez2022-02-232-13/+2
| | |
* | | 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
| |/ |/|
* | Update Rust edition to 2021 :tada:Libravatar Héctor Ramón Jiménez2022-02-0927-28/+28
| |
* | Add `index.html` to `counter` exampleLibravatar Héctor Ramón Jiménez2022-02-091-0/+12
| |
* | [ImgBot] Optimize imagesLibravatar ImgBotApp2022-02-074-725/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | *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>
* | Fix linksLibravatar Theo Robinson2022-02-073-4/+4
| | | | | | | | | | | | Change dead links to updated ones. Change/Convert all file links to relative links so they are branch agnostic.
* | Merge pull request #1225 from tarkah/feat/canvas-line-dashLibravatar Héctor Ramón2022-02-041-0/+4
|\ \ | | | | | | Add line dash API
| * | Ask for a slice of segments instead of ownership in `LineDash`Libravatar Héctor Ramón Jiménez2022-02-032-3/+3
| | |
| * | Fix examples, no longer CopyLibravatar Cory Forsstrom2022-01-271-2/+2
| | |
| * | Increase gap in exampleLibravatar Cory Forsstrom2022-01-271-1/+1
| | |
| * | Add line dash APILibravatar Cory Forsstrom2022-01-271-0/+4
| |/