summaryrefslogtreecommitdiffstats
path: root/examples/todos/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* 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-241-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
|
* Use `once_cell` instead of `lazy_static`Libravatar Ian Douglas Scott2022-10-281-4/+2
| | | | | | 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-281-5/+26
|
* Replace stateful widgets with new `iced_pure` APILibravatar Héctor Ramón Jiménez2022-07-271-173/+112
|
* 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
* 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
|/
* Refactor alignment types into an `alignment` moduleLibravatar Héctor Ramón Jiménez2021-09-201-10/+13
|
* Introduce and use `CrossAlign` enum for `Column` and `Row`Libravatar Héctor Ramón Jiménez2021-09-201-5/+5
|
* Make `Command` implementations platform-specificLibravatar Héctor Ramón Jiménez2021-09-021-7/+3
| | | | | | | | | This allows us to introduce a platform-specific `Action` to both `iced_native` and `iced_web` and remove the `Clipboard` from `Application::update` to maintain purity. Additionally, this should let us implement further actions to let users query and modify the shell environment (e.g. window, clipboard, and more!)
* Add newline to `todos` exampleLibravatar Héctor Ramón Jiménez2021-07-221-0/+1
| | | | ... just for readability
* Added `select_all` method to `TextInput`.Libravatar Aldo Fregoso2021-03-131-1/+3
|
* Add `clipboard` argument to `Application::update`Libravatar Héctor Ramón Jiménez2021-03-111-3/+7
|
* Remove unnecessary `SaveError` variant in `todos` exampleLibravatar Héctor Ramón Jiménez2021-01-041-2/+1
|
* Use `f32` for `border_width` and `border_radius`Libravatar Héctor Ramón Jiménez2020-11-231-2/+2
|
* Use `directories-next` in `todos` exampleLibravatar Héctor Ramón Jiménez2020-11-111-1/+1
|
* Make `Application` and `Sandbox` return a `Result`Libravatar Héctor Ramón Jiménez2020-09-081-1/+1
|
* Introduce `Widget::overlay` :tada:Libravatar Héctor Ramón Jiménez2020-07-081-2/+2
|
* Allow passing external state to `Application::new`Libravatar Héctor Ramón Jiménez2020-03-301-1/+2
|
* Implement local storage for `todos` example in WasmLibravatar Héctor Ramón Jiménez2020-02-061-3/+26
|
* Allow switching `executor::Default` with featuresLibravatar Héctor Ramón Jiménez2020-02-061-6/+1
|
* Allow `todos` example to compile to `wasm32`Libravatar Héctor Ramón Jiménez2020-02-061-0/+19
|
* Fix empty message alignment in `todos` exampleLibravatar Héctor Ramón Jiménez2020-01-231-0/+1
|
* Package examples and remove `dev-dependencies`Libravatar Héctor Ramón Jiménez2020-01-201-0/+615