summaryrefslogtreecommitdiffstats
path: root/examples (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Move `Canvas` and `QRCode` to `iced` crateLibravatar Héctor Ramón Jiménez2023-03-036-6/+6
| | | | Rename `canvas` modules to `geometry` in graphics subcrates
* Fix `Clip` primitive translation in `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2023-03-011-1/+1
|
* Implement `Canvas` support for `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2023-03-0110-80/+100
|
* Fix `checkbox` exampleLibravatar Héctor Ramón Jiménez2023-02-242-9/+19
|
* Reuse a `RenderPass` as much as possible in `iced_wgpu`Libravatar Héctor Ramón Jiménez2023-02-241-0/+1
|
* Refactor `triangle::Pipeline` into `prepare` and `render` architectureLibravatar Héctor Ramón Jiménez2023-02-241-9/+0
| | | | And get rid of the staging belt! :tada:
* Implement `font::load` command in `iced_native`Libravatar Héctor Ramón Jiménez2023-02-241-5/+10
|
* Overhaul `Font` type to allow font family selectionLibravatar Héctor Ramón Jiménez2023-02-242-4/+1
|
* Draft `glyphon` implementation of text pipeline for `iced_wgpu`Libravatar Héctor Ramón Jiménez2023-02-241-2/+7
|
* Remove `iced_glow`, `glyph-brush`, and `wgpu_glyph` dependenciesLibravatar Héctor Ramón Jiménez2023-02-2414-421/+3
|
* Use `f32` in `Length::Units` and rename it to `Fixed`Libravatar Héctor Ramón Jiménez2023-02-1714-38/+34
|
* image: Allow any kind of data that implements `AsRef<[u8]>` for the image dataLibravatar Sebastian Dröge2023-02-171-1/+1
| | | | | | It's not required anywhere for it to be a plain slice or a `Vec` and this makes it possible to use data allocated in a different way without copying.
* Merge pull request #1665 from Jedsek/patch-2Libravatar Héctor Ramón2023-02-171-5/+7
|\ | | | | Minor update: `example/qr_code`
| * Run `cargo fmt`Libravatar Héctor Ramón Jiménez2023-02-171-1/+1
| |
| * Update main.rsLibravatar Jedsek2023-01-201-1/+1
| |
| * Update main.rsLibravatar Jedsek2023-01-201-5/+7
| | | | | | The app should not render qr_code when data is empty
* | Added the ability to change checkbox iconLibravatar Casper Storm2023-02-164-0/+84
| |
* | Fix: Clippy lint 'uninlined_format_args'Libravatar 13r0ck2023-01-2714-23/+20
| |
* | Merge pull request #1655 from tarkah/feat/group-overlayLibravatar Héctor Ramón2023-01-242-0/+680
|\ \ | |/ |/| Group Overlay
| * Rename method to is_overLibravatar Cory Forsstrom2023-01-171-5/+1
| |
| * Add toast exampleLibravatar Cory Forsstrom2023-01-172-0/+684
| |
* | Fix `#[default]` in `preset` for `game_of_life` exampleLibravatar Héctor Ramón2023-01-191-1/+1
| |
* | Update preset.rsLibravatar Jedsek2023-01-191-7/+2
|/
* Merge pull request #1647 from iced-rs/feature/widget-request-redrawLibravatar Héctor Ramón2023-01-134-29/+26
|\ | | | | Widget-driven animations
| * Implement `window::frames` subscriptionLibravatar Héctor Ramón Jiménez2023-01-121-2/+1
| | | | | | | | ... and use it in the `solar_system` example :tada:
| * Draft `Shell:request_redraw` APILibravatar Héctor Ramón Jiménez2023-01-123-27/+25
| | | | | | | | ... and implement `TextInput` cursor blink :tada:
* | feat: provide `&Dependency` to `Lazy` widget `View`Libravatar Nick Senger2023-01-111-1/+1
| |
* | clippyLibravatar Nick Senger2023-01-101-3/+9
| |
* | add overlays to `Lazy` exampleLibravatar Nick Senger2023-01-101-24/+130
| |
* | cleanup `Lazy` examplesLibravatar Nick Senger2023-01-103-150/+1
|/
* Add some missing `spacing` to `scrollable` exampleLibravatar Héctor Ramón Jiménez2023-01-081-0/+2
|
* Introduce `RelativeOffset` type in `scrollable`Libravatar Héctor Ramón Jiménez2023-01-082-9/+9
|
* Reworked Scrollable to account for lack of widget order guarantees.Libravatar bungoboingo2022-12-293-83/+57
| | | | Fixed thumb "snapping" bug on scrollable when cursor is out of bounds.
* Add multidirectional scrolling capabilities to the existing Scrollable.Libravatar Bingus2022-12-295-186/+330
|
* Add `Renderer` argument to `operate`Libravatar Héctor Ramón Jiménez2022-12-221-0/+4
|
* Fix `clippy` lints for Rust 1.66Libravatar Héctor Ramón Jiménez2022-12-201-2/+4
|
* updated README for slider exampleLibravatar Casper Storm2022-12-131-2/+2
|
* Split vertical orientation into VerticalSliderLibravatar Casper Storm2022-12-131-13/+7
|
* Merge branch 'master' into feat/slider-orientationLibravatar Casper Storm2022-12-1321-128/+1348
|\
| * Showcase color filtering in existing `svg` exampleLibravatar Héctor Ramón Jiménez2022-12-064-106/+54
| | | | | | | | ... and remove the `svg_style` example
| * Remove `appearance` from `Handle`Libravatar Héctor Ramón Jiménez2022-12-061-4/+4
| | | | | | | | ... and pass it directly to `Renderer::draw` instead.
| * chore(examples): Add svg-style exampleLibravatar Michael Aaron Murphy2022-12-063-0/+89
| |
| * Ask `clippy` to behaveLibravatar Héctor Ramón Jiménez2022-12-021-0/+1
| |
| * Add `custom_quad` exampleLibravatar Héctor Ramón Jiménez2022-12-022-0/+169
| | | | | | | | Thanks to @rksm :bow:
| * Fix `border_radius` in `modal` exampleLibravatar Héctor Ramón Jiménez2022-12-021-1/+1
| |
| * Merge branch 'master' into non-uniform-border-radius-for-quadsLibravatar Héctor Ramón Jiménez2022-12-0210-10/+777
| |\
| | * Add on_submit & esc for exampleLibravatar Cory Forsstrom2022-11-291-9/+30
| | |
| | * Add modal exampleLibravatar Cory Forsstrom2022-11-292-0/+464
| | |
| | * Derive `Default` for `Rainbow` in `geometry` exampleLibravatar Héctor Ramón Jiménez2022-11-281-6/+5
| | |
| | * Re-introduce the `geometry` exampleLibravatar Héctor Ramón Jiménez2022-11-284-0/+243
| | |