summaryrefslogtreecommitdiffstats
path: root/examples (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
| * | Introduce `text::Shaping` enum and replace magic booleanLibravatar Héctor Ramón Jiménez2023-05-021-1/+2
| | |
| * | Fix build of `integration` example for Wasm targetLibravatar Héctor Ramón Jiménez2023-04-271-1/+2
| | |
| * | Merge branch 'master' into advanced-textLibravatar Héctor Ramón Jiménez2023-04-1715-153/+201
| |\|
| | * 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
| | | |
| * | | Update `wgpu` and `cosmic-text`Libravatar Héctor Ramón Jiménez2023-04-081-12/+15
| | | |
| * | | Introduce support for `Font` attributesLibravatar Héctor Ramón Jiménez2023-03-302-7/+10
| | | |
| * | | Merge branch 'master' into advanced-textLibravatar Héctor Ramón Jiménez2023-03-173-15/+7
| |\| |
| | * | Fix `clippy` lints for Rust 1.68Libravatar Héctor Ramón Jiménez2023-03-142-14/+6
| | | |
| * | | Merge branch 'master' into feature/software-rendererLibravatar Héctor Ramón Jiménez2023-03-074-5/+26
| |\ \ \
| * | | | Enable renderer backends in `integration` exampleLibravatar Héctor Ramón Jiménez2023-03-071-0/+1
| | | | |
| * | | | Use default features in `svg` exampleLibravatar Héctor Ramón Jiménez2023-03-071-1/+1
| | | | |
| * | | | Implement `vector` pipeline in `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2023-03-071-1/+1
| | | | |
| * | | | Move `webgl` feature selection for `wgpu` into `iced_wgpu`Libravatar Héctor Ramón Jiménez2023-03-051-1/+1
| | | | |
| * | | | Rename `iced_native` to `iced_runtime`Libravatar Héctor Ramón Jiménez2023-03-052-3/+3
| | | | |
| * | | | Remove generic `Hasher` and `Event` from `subscription::Recipe`Libravatar Héctor Ramón Jiménez2023-03-055-8/+4
| | | | |
| * | | | Create `iced_widget` subcrate and re-organize the whole codebaseLibravatar Héctor Ramón Jiménez2023-03-0424-163/+143
| | | | |
| * | | | 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
| | |_|/ | |/| |
* | | | Added per-window theme support.Libravatar Bingus2023-03-151-13/+28
| | | |
* | | | Added simpler MW exampleLibravatar Bingus2023-03-144-559/+739
| | | |
* | | | Code cleanup, clearer comments + removed some unnecessary dupe;Libravatar Bingus2023-03-132-2/+2
| | | | | | | | | | | | | | | | | | | | Removed `Frames` struct return for `window::frames()` since we are just redrawing every window anyways; Interface dropping;
* | | | Merge remote-tracking branch 'origin/master' into feat/multi-window-supportLibravatar Bingus2023-03-132-2/+21
|\ \ \ \ | | |_|/ | |/| |