summaryrefslogtreecommitdiffstats
path: root/examples/websocket (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Use new `async ||` closure syntax :tada:Libravatar Héctor Ramón Jiménez2025-02-211-1/+1
|
* Update all `examples` to Rust 2024Libravatar Héctor Ramón Jiménez2025-02-214-4/+4
|
* Remove unneded `let _ =` in `websocket` exampleLibravatar Héctor Ramón Jiménez2025-02-111-10/+6
|
* Rewrite `websocket` example using `sipper`Libravatar Héctor Ramón Jiménez2025-02-111-60/+38
|
* Fix consistency of import orderingLibravatar Héctor Ramón Jiménez2025-01-061-2/+1
|
* chore: remove once_cell dependencyLibravatar Tommy Volk2025-01-062-3/+4
|
* Re-export variants of `Length` and `alignment` typesLibravatar Héctor Ramón Jiménez2024-07-121-6/+6
|
* Introduce helper methods for alignment for all widgetsLibravatar Héctor Ramón Jiménez2024-07-121-10/+3
|
* Remove `load` method from `application` and `daemon`Libravatar Héctor Ramón Jiménez2024-07-091-14/+13
| | | | | If you need to run a `Task` during boot, use `run_with` instead!
* Hide `Subscription` internalsLibravatar Héctor Ramón Jiménez2024-07-052-56/+48
| | | | .. and introduce `stream::channel` helper
* Introduce `daemon` API and unify shell runtimesLibravatar Héctor Ramón Jiménez2024-06-191-1/+1
|
* Replace `Command` with a new `Task` API with chain supportLibravatar Héctor Ramón Jiménez2024-06-141-11/+11
|
* Auto-focus `text_input` in `websocket` exampleLibravatar Héctor Ramón Jiménez2024-05-031-2/+7
|
* Introduce `center` widget helperLibravatar Héctor Ramón Jiménez2024-05-031-8/+2
| | | | | | | | ... and also make `center_x` and `center_y` set `width` and `height` to `Length::Fill`, respectively. This targets the most common use case when centering things and removes a bunch of boilerplate as a result.
* Avoid extra text allocations in `websocket` exampleLibravatar Héctor Ramón Jiménez2024-04-022-9/+18
|
* Reintroduce old `text` helper as `value` helperLibravatar Héctor Ramón Jiménez2024-04-011-9/+3
|
* Specialize `widget::text` helper with custom `IntoContent` traitLibravatar Héctor Ramón Jiménez2024-04-011-1/+5
|
* Use `Program` API in `websocket` exampleLibravatar Héctor Ramón Jiménez2024-03-171-20/+8
|
* Simplify theming for `Text` widgetLibravatar Héctor Ramón Jiménez2024-03-041-2/+2
|
* Update `async-tungstenite` dependency in `websocket` exampleLibravatar Héctor Ramón Jiménez2024-02-091-1/+1
|
* Fix `websocket` exampleLibravatar Héctor Ramón Jiménez2024-01-111-1/+1
|
* Introduce `Widget::size_hint` and fix further layout inconsistenciesLibravatar Héctor Ramón Jiménez2024-01-101-8/+3
|
* Make `Shrink` have priority over `Fill` in layoutLibravatar Héctor Ramón Jiménez2024-01-041-2/+0
|
* Update `async-tungstenite` in `websocket` exampleLibravatar Héctor Ramón Jiménez2023-12-111-1/+1
|
* Fix `clippy::manual_let_else`Libravatar Héctor Ramón Jiménez2023-09-201-4/+1
|
* Use workspace dependencies and package inheritanceLibravatar Héctor Ramón Jiménez2023-09-041-6/+6
| | | | | | 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.
* Update vulnerable `async-tungstenite` dependency in `websocket` exampleLibravatar Héctor Ramón Jiménez2023-08-231-1/+1
|
* Merge branch 'master' into advanced-textLibravatar Héctor Ramón Jiménez2023-04-172-54/+55
|\
| * Rename `on_change` to `on_input` for `TextInput`Libravatar Héctor Ramón Jiménez2023-04-121-1/+1
| |
| * Introduce disabled state for `TextInput`Libravatar Dan Mishin2023-04-121-6/+3
| |
| * 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-111-48/+52
| |
* | Merge branch 'master' into feature/software-rendererLibravatar Héctor Ramón Jiménez2023-03-071-1/+3
|\|
| * Remove `Fill` variant for `Alignment`Libravatar Héctor Ramón Jiménez2023-02-271-1/+3
| | | | | | | | | | Implementing this generically in our `flex` logic has an exponential cost. Let's explore other options!
* | Remove generic `Hasher` and `Event` from `subscription::Recipe`Libravatar Héctor Ramón Jiménez2023-03-053-5/+3
|/
* Fix: Clippy lint 'uninlined_format_args'Libravatar 13r0ck2023-01-272-2/+2
|
* Introduce `RelativeOffset` type in `scrollable`Libravatar Héctor Ramón Jiménez2023-01-081-2/+2
|
* Reworked Scrollable to account for lack of widget order guarantees.Libravatar bungoboingo2022-12-291-2/+2
| | | | Fixed thumb "snapping" bug on scrollable when cursor is out of bounds.
* Add multidirectional scrolling capabilities to the existing Scrollable.Libravatar Bingus2022-12-291-2/+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-4/+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`).
* Merge pull request #1393 from iced-rs/deprecate-stateful-widgetsLibravatar Héctor Ramón2022-08-063-42/+51
|\ | | | | Replace stateful widgets with the new `iced_pure` API
| * Implement `scrollable::snap_to` operationLibravatar Héctor Ramón Jiménez2022-08-042-6/+17
| |
| * Use `ToString` for `Text::new` instead of `Into<String>`Libravatar Héctor Ramón Jiménez2022-07-271-7/+8
| |
| * Replace stateful widgets with new `iced_pure` APILibravatar Héctor Ramón Jiménez2022-07-271-31/+28
| |
* | Bump `websocket` example version to fix `audit` workflowLibravatar Héctor Ramón Jiménez2022-08-041-1/+1
|/
* Fix `clippy` lints for all crates and featuresLibravatar Héctor Ramón Jiménez2022-07-092-7/+7
| | | | ... and check those in CI as well!
* Introduce `StyleSheet` for `Text` widgetLibravatar Héctor Ramón Jiménez2022-06-291-1/+1
|
* Draft first-class `Theme` supportLibravatar Héctor Ramón Jiménez2022-05-141-1/+2
| | | | RFC: https://github.com/iced-rs/rfcs/pull/6