Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Update all `examples` to Rust 2024 | 2025-02-21 | 1 | -1/+1 | |
| | |||||
* | Fix consistency of import ordering | 2025-01-06 | 1 | -2/+1 | |
| | |||||
* | chore: remove once_cell dependency | 2025-01-06 | 1 | -2/+4 | |
| | |||||
* | Re-export variants of `Length` and `alignment` types | 2024-07-12 | 1 | -6/+6 | |
| | |||||
* | Introduce helper methods for alignment for all widgets | 2024-07-12 | 1 | -10/+3 | |
| | |||||
* | Remove `load` method from `application` and `daemon` | 2024-07-09 | 1 | -14/+13 | |
| | | | | | If you need to run a `Task` during boot, use `run_with` instead! | ||||
* | Hide `Subscription` internals | 2024-07-05 | 1 | -1/+1 | |
| | | | | .. and introduce `stream::channel` helper | ||||
* | Introduce `daemon` API and unify shell runtimes | 2024-06-19 | 1 | -1/+1 | |
| | |||||
* | Replace `Command` with a new `Task` API with chain support | 2024-06-14 | 1 | -11/+11 | |
| | |||||
* | Auto-focus `text_input` in `websocket` example | 2024-05-03 | 1 | -2/+7 | |
| | |||||
* | Introduce `center` widget helper | 2024-05-03 | 1 | -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` example | 2024-04-02 | 1 | -2/+2 | |
| | |||||
* | Reintroduce old `text` helper as `value` helper | 2024-04-01 | 1 | -9/+3 | |
| | |||||
* | Specialize `widget::text` helper with custom `IntoContent` trait | 2024-04-01 | 1 | -1/+5 | |
| | |||||
* | Use `Program` API in `websocket` example | 2024-03-17 | 1 | -20/+8 | |
| | |||||
* | Simplify theming for `Text` widget | 2024-03-04 | 1 | -2/+2 | |
| | |||||
* | Fix `websocket` example | 2024-01-11 | 1 | -1/+1 | |
| | |||||
* | Introduce `Widget::size_hint` and fix further layout inconsistencies | 2024-01-10 | 1 | -8/+3 | |
| | |||||
* | Make `Shrink` have priority over `Fill` in layout | 2024-01-04 | 1 | -2/+0 | |
| | |||||
* | Rename `on_change` to `on_input` for `TextInput` | 2023-04-12 | 1 | -1/+1 | |
| | |||||
* | Introduce disabled state for `TextInput` | 2023-04-12 | 1 | -6/+3 | |
| | |||||
* | Remove `Fill` variant for `Alignment` | 2023-02-27 | 1 | -1/+3 | |
| | | | | | Implementing this generically in our `flex` logic has an exponential cost. Let's explore other options! | ||||
* | Introduce `RelativeOffset` type in `scrollable` | 2023-01-08 | 1 | -2/+2 | |
| | |||||
* | Reworked Scrollable to account for lack of widget order guarantees. | 2022-12-29 | 1 | -2/+2 | |
| | | | | Fixed thumb "snapping" bug on scrollable when cursor is out of bounds. | ||||
* | Add multidirectional scrolling capabilities to the existing Scrollable. | 2022-12-29 | 1 | -2/+5 | |
| | |||||
* | Use `once_cell` instead of `lazy_static` | 2022-10-28 | 1 | -3/+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`). | ||||
* | Implement `scrollable::snap_to` operation | 2022-08-04 | 1 | -6/+16 | |
| | |||||
* | Replace stateful widgets with new `iced_pure` API | 2022-07-27 | 1 | -31/+28 | |
| | |||||
* | Introduce `StyleSheet` for `Text` widget | 2022-06-29 | 1 | -1/+1 | |
| | |||||
* | Draft first-class `Theme` support | 2022-05-14 | 1 | -1/+2 | |
| | | | | RFC: https://github.com/iced-rs/rfcs/pull/6 | ||||
* | Draft `websocket` example :tada: | 2022-01-16 | 1 | -0/+162 | |