summaryrefslogtreecommitdiffstats
path: root/examples (follow)
Commit message (Collapse)AuthorAgeFilesLines
* More work on exampleLibravatar Aaron Honeycutt2023-03-171-5/+5
|
* Working more on exampleLibravatar Aaron Honeycutt2023-03-141-10/+36
|
* Work on example moreLibravatar Aaron Honeycutt2023-03-141-12/+7
|
* Cleaning up from the Checkbox example that this is based onLibravatar Aaron Honeycutt2023-03-141-2/+57
|
* Working on Radio exampleLibravatar Aaron Honeycutt2023-03-142-0/+13
|
* Fix `clippy` lints for Rust 1.68Libravatar Héctor Ramón Jiménez2023-03-142-14/+6
|
* Use correct package name in checkbox example docsLibravatar lupd2023-03-081-1/+1
|
* Expose `window` commands for Wasm buildsLibravatar Héctor Ramón Jiménez2023-03-031-11/+4
|
* Added example of toggling fullscreen to TODOs.Libravatar Bingus2023-03-021-2/+28
|
* Remove `Fill` variant for `Alignment`Libravatar Héctor Ramón Jiménez2023-02-273-4/+6
| | | | | Implementing this generically in our `flex` logic has an exponential cost. Let's explore other options!
* 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
| | |