Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Implement `Image` in `iced_pure` | 2022-02-13 | 1 | -0/+74 | ||
| | ||||||
* | Add `max_width` to `Column` in `iced_pure` | 2022-02-12 | 1 | -1/+14 | ||
| | ||||||
* | Implement missing `on_event` and `mouse_interaction` for `Checkbox` in ↵ | 2022-02-12 | 1 | -1/+41 | ||
| | | | | `iced_pure` | |||||
* | Implement pure version of `todos` example :tada: | 2022-02-12 | 10 | -90/+252 | ||
| | | | | | | | | The `Widget` trait in `iced_pure` needed to change a bit to make the implementation of `Element::map` possible. Specifically, the `children` method has been split into `diff` and `children_state`. | |||||
* | Implement `TextInput` in `iced_pure` | 2022-02-12 | 1 | -0/+239 | ||
| | ||||||
* | Implement `Scrollable` in `iced_pure` | 2022-02-12 | 3 | -9/+281 | ||
| | ||||||
* | Implement `Checkbox` in `iced_pure` | 2022-02-12 | 1 | -0/+82 | ||
| | ||||||
* | Reuse `Text` widget from `iced_native` in `iced_pure` | 2022-02-12 | 1 | -114/+17 | ||
| | ||||||
* | Implement `Container` widget in `iced_pure` | 2022-02-12 | 1 | -0/+258 | ||
| | ||||||
* | Use `TypeId` of `()` for `Column` and `Row` tags in `iced_pure` | 2022-02-11 | 2 | -4/+2 | ||
| | ||||||
* | Implement `Row` in `iced_pure` | 2022-02-11 | 1 | -0/+223 | ||
| | ||||||
* | Complete `Button` in `iced_pure` | 2022-02-11 | 1 | -2/+32 | ||
| | ||||||
* | Expose reusable `Button` logic | 2022-02-11 | 2 | -124/+52 | ||
| | | | | ... and reuse it in `iced_pure`! | |||||
* | Allow pure widgets to borrow from `Application` data :tada: | 2022-02-11 | 5 | -56/+65 | ||
| | ||||||
* | Expose function helpers to build widgets in `pure::widget` | 2022-02-11 | 1 | -2/+2 | ||
| | | | | | `button("Hello")` is easier to write and read than `Button::new("Hello")`. | |||||
* | Rename `iced_virtual` to `iced_pure` | 2022-02-11 | 5 | -0/+756 | ||
`virtual` is a reserved keyword in Rust :grimacing: |