summaryrefslogtreecommitdiffstats
path: root/examples (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fix Wasm target for `integration_wgpu`Libravatar Héctor Ramón Jiménez2023-04-131-1/+2
|
* Update `env_logger` in `integration_wgpu` exampleLibravatar Héctor Ramón Jiménez2023-04-131-1/+1
|
* Get surface capabilities only once in `iced_wgpu`Libravatar Héctor Ramón Jiménez2023-04-131-5/+4
|
* Update `wgpu` to `0.15`Libravatar Elham Aryanpur2023-04-131-14/+23
|
* Remove `text_input` exampleLibravatar Héctor Ramón Jiménez2023-04-123-120/+0
|
* Rename `on_change` to `on_input` for `TextInput`Libravatar Héctor Ramón Jiménez2023-04-1211-16/+16
|
* Introduce disabled state for `TextInput`Libravatar Dan Mishin2023-04-1213-66/+166
|
* Use `Result::is_err` in `websocket` exampleLibravatar Héctor Ramón Jiménez2023-04-111-1/+1
|
* Use `127.0.0.1` instead of `localhost` in `websocket` exampleLibravatar Héctor Ramón Jiménez2023-04-111-1/+1
|
* Implement `subscription::channel` and simplify `unfold`Libravatar Héctor Ramón Jiménez2023-04-112-58/+59
|
* 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-115-124/+66
|
* Changed `Handle` to `Icon` to be consistentLibravatar Casper Storm2023-04-111-9/+9
|
* feat: added handle to text_inputLibravatar Casper Storm2023-04-114-0/+112
|
* Merge pull request #1669 from GyulyVGC/masterLibravatar Héctor Ramón2023-03-271-11/+25
|\ | | | | Added scrollable style `focused` to be displayed when mouse is over the scrollable area
| * Introduce `is_mouse_over_scrollbar` to `StyleSheet::hovered` for `Scrollable`Libravatar Héctor Ramón Jiménez2023-03-271-11/+25
| |
* | 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
|