summaryrefslogtreecommitdiffstats
path: root/examples/todos (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Refactor `KeyCode` into `Key` and `Location`Libravatar Héctor Ramón Jiménez2024-01-161-5/+11
|
* Fix `size_hint` for `keyed_column`Libravatar Héctor Ramón Jiménez2024-01-101-8/+1
|
* Use actual floats for logical coordinatesLibravatar Héctor Ramón Jiménez2023-11-301-2/+2
|
* Merge branch 'master' into feat/multi-window-supportLibravatar Héctor Ramón Jiménez2023-11-293-43/+50
|\
| * Fix `clippy::trivially-copy-pass-by-ref`Libravatar Héctor Ramón Jiménez2023-09-201-1/+1
| |
| * Chore: Inline format args for ease of readingLibravatar Yuri Astrakhan2023-09-191-2/+1
| | | | | | | | A minor cleanup to inline all simple cases of format arguments. Makes the format strings just a bit easier to read.
| * Fix Wasm build of `todos` exampleLibravatar Héctor Ramón Jiménez2023-09-101-0/+1
| |
| * Merge branch 'master' into explicit-text-cachingLibravatar Héctor Ramón Jiménez2023-09-103-38/+34
| |\
| | * Add instructions to run web examplesLibravatar Thomas2023-09-091-1/+8
| | |
| | * Add webgl feature for web examplesLibravatar Thomas2023-09-091-0/+3
| | |
| | * Host GIFs and video examples in `iced.rs`Libravatar Héctor Ramón Jiménez2023-09-071-2/+2
| | | | | | | | | | | | RIP Gfycat
| | * Merge pull request #2069 from iced-rs/use-workspace-dependenciesLibravatar Héctor Ramón2023-09-071-5/+7
| | |\ | | | | | | | | Use workspace dependencies and package inheritance
| | | * Use workspace dependencies and package inheritanceLibravatar Héctor Ramón Jiménez2023-09-041-5/+7
| | | | | | | | | | | | | | | | | | | | | | | | We are also taking this as a chance to synchronize the versions of all the crates! Because of this, we will skip the `0.11` version.
| | * | Introduce `keyboard::on_key_press` and `on_key_release`Libravatar Héctor Ramón Jiménez2023-09-071-28/+12
| | |/ | | | | | | | | | Also rename `subscription::events*` to `event::listen*`.
| * | Fix Wasm build of `todos` exampleLibravatar Héctor Ramón Jiménez2023-09-041-0/+1
| | |
| * | Introduce `keyed::Column` widgetLibravatar Héctor Ramón Jiménez2023-09-042-9/+19
| |/
* / refactored window storage;Libravatar Bingus2023-07-211-1/+1
|/ | | | | new helper window events (Destroyed, Created); clippy + fmt;
* Introduce `text::Shaping` enum and replace magic booleanLibravatar Héctor Ramón Jiménez2023-05-021-1/+2
|
* Merge branch 'master' into advanced-textLibravatar Héctor Ramón Jiménez2023-04-171-17/+12
|\
| * Rename `on_change` to `on_input` for `TextInput`Libravatar Héctor Ramón Jiménez2023-04-121-4/+4
| |
| * Introduce disabled state for `TextInput`Libravatar Dan Mishin2023-04-121-17/+12
| |
* | Introduce support for `Font` attributesLibravatar Héctor Ramón Jiménez2023-03-301-6/+9
| |
* | Merge branch 'master' into advanced-textLibravatar Héctor Ramón Jiménez2023-03-171-7/+4
|\|
| * Fix `clippy` lints for Rust 1.68Libravatar Héctor Ramón Jiménez2023-03-141-7/+4
| |
* | Merge branch 'master' into feature/software-rendererLibravatar Héctor Ramón Jiménez2023-03-071-1/+20
|\|
| * 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
| |
* | 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
|/
* Use `f32` in `Length::Units` and rename it to `Fixed`Libravatar Héctor Ramón Jiménez2023-02-171-2/+2
|
* Fix: Clippy lint 'uninlined_format_args'Libravatar 13r0ck2023-01-271-1/+1
|
* Update todos example to select_all input on editLibravatar Cory Forsstrom2022-11-111-1/+5
|
* Remove patch version from `once_cell` dependencyLibravatar Héctor Ramón Jiménez2022-11-011-1/+1
|
* Use `once_cell` instead of `lazy_static`Libravatar Ian Douglas Scott2022-10-282-5/+3
| | | | | | This seems to be generally considered the preferred, idiomatic solution now. This is in the standard library behind a feature flag (apparently now called `std::sync::LazyLock`).
* Take `Cow` in `Text::new`Libravatar Ram.Type-02022-09-211-3/+3
|
* Implement `focus_previous` operationLibravatar Héctor Ramón Jiménez2022-08-041-3/+12
|
* Implement `focus_next` operationLibravatar Héctor Ramón Jiménez2022-08-021-12/+45
| | | | ... as well as a `count_focusable` composable helper!
* Focus text inputs in `todos` exampleLibravatar Héctor Ramón Jiménez2022-07-282-5/+27
|
* Replace stateful widgets with new `iced_pure` APILibravatar Héctor Ramón Jiménez2022-07-271-173/+112
|
* Fix `deb` asset path in `todos` exampleLibravatar Héctor Ramón Jiménez2022-07-141-1/+1
|
* Fix Wasm build of `todos` exampleLibravatar Héctor Ramón Jiménez2022-07-091-7/+7
|
* Fix `clippy` lints for all crates and featuresLibravatar Héctor Ramón Jiménez2022-07-091-14/+14
| | | | ... and check those in CI as well!
* Introduce `StyleSheet` for `Text` widgetLibravatar Héctor Ramón Jiménez2022-06-291-4/+4
|
* Draft first-class `Theme` supportLibravatar Héctor Ramón Jiménez2022-05-141-58/+6
| | | | RFC: https://github.com/iced-rs/rfcs/pull/6
* Update Rust edition to 2021 :tada:Libravatar Héctor Ramón Jiménez2022-02-091-1/+1
|
* Add `index.html` for `todos` and `tour` exampleLibravatar Héctor Ramón Jiménez2022-01-291-0/+12
| | | | You can use `trunk serve` to easily compile them!
* Merge pull request #1106 from ↵Libravatar Héctor Ramón2021-11-101-2/+2
|\ | | | | | | | | RamType0/RemoveUnnecessaryStringAllocationInExample Remove unnecessary String allocation
| * Remove unnecessary String allocationLibravatar Ram.Type-02021-11-021-2/+2
| | | | | | | | Remove unnecessary String allocation by passing &format! or &x.to_string as impl Into<String>
* | Reintroduce `Box` for `style_sheet` in `Button`Libravatar Héctor Ramón Jiménez2021-10-311-4/+4
| |
* | Wire up styling to `Button` in `iced_native`Libravatar Héctor Ramón Jiménez2021-10-181-22/+18
|/