summaryrefslogtreecommitdiffstats
path: root/src/widget.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Create `iced_widget` subcrate and re-organize the whole codebaseLibravatar Héctor Ramón Jiménez2023-03-041-239/+0
|
* Move `Canvas` and `QRCode` to `iced` crateLibravatar Héctor Ramón Jiménez2023-03-031-4/+4
| | | | Rename `canvas` modules to `geometry` in graphics subcrates
* Implement `Canvas` support for `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2023-03-011-2/+3
|
* Use `iced_renderer` instead of `iced_graphics` in root crateLibravatar Héctor Ramón Jiménez2023-02-281-2/+2
|
* Bump versions :tada:Libravatar Héctor Ramón Jiménez2023-02-181-1/+1
|
* Added the ability to change checkbox iconLibravatar Casper Storm2023-02-161-1/+1
|
* Rename `HandleContent` to `Icon` and simplify genericsLibravatar Héctor Ramón Jiménez2023-02-141-1/+1
|
* Extend pick_list::HandleLibravatar Casper Storm2023-02-141-1/+3
|
* Bump versions :tada:Libravatar Héctor Ramón Jiménez2023-01-141-1/+1
|
* Merge pull request #1550 from bungoboingo/feat/multidirectional-scrollingLibravatar Héctor Ramón2023-01-091-1/+2
|\ | | | | [Feature] Multidirectional scrolling
| * Introduce `RelativeOffset` type in `scrollable`Libravatar Héctor Ramón Jiménez2023-01-081-1/+2
| |
| * Reworked Scrollable to account for lack of widget order guarantees.Libravatar bungoboingo2022-12-291-2/+1
| | | | | | | | Fixed thumb "snapping" bug on scrollable when cursor is out of bounds.
| * Add multidirectional scrolling capabilities to the existing Scrollable.Libravatar Bingus2022-12-291-1/+2
| |
* | Merge pull request #1562 from casperstorm/feat/custom-accessory-contentLibravatar Héctor Ramón2023-01-021-1/+1
|\ \ | |/ |/| Added ability to customize the handle of a `pick_list`
| * Rename `pick_list::AccessoryContent` to `Handle`Libravatar Héctor Ramón Jiménez2022-12-141-3/+1
| | | | | | | | ... and rename `Default` variant to `Arrow`.
| * Added ability to customize accessory content.Libravatar Casper Rogild Storm2022-11-291-1/+3
| |
* | Split vertical orientation into VerticalSliderLibravatar Casper Storm2022-12-131-0/+2
| |
* | Bump versions :tada:Libravatar Héctor Ramón Jiménez2022-12-071-1/+1
| |
* | Remove `appearance` from `Handle`Libravatar Héctor Ramón Jiménez2022-12-061-1/+1
|/ | | | ... and pass it directly to `Renderer::draw` instead.
* Add text input operationsLibravatar Cory Forsstrom2022-11-111-1/+2
|
* Fix outdated links in documentationLibravatar Héctor Ramón Jiménez2022-11-101-1/+1
|
* Take `Cow` in `Text::new`Libravatar Ram.Type-02022-09-211-2/+2
|
* Implement `scrollable::snap_to` operationLibravatar Héctor Ramón Jiménez2022-08-041-3/+3
|
* Implement `focus_previous` operationLibravatar Héctor Ramón Jiménez2022-08-041-0/+8
|
* Implement `focus_next` operationLibravatar Héctor Ramón Jiménez2022-08-021-0/+11
| | | | ... as well as a `count_focusable` composable helper!
* Implement `Widget::operate` for `TextInput`Libravatar Héctor Ramón Jiménez2022-07-281-1/+3
|
* Replace stateful widgets with new `iced_pure` APILibravatar Héctor Ramón Jiménez2022-07-271-24/+26
|
* Make widget aliases in `iced` compatible with `iced_native`Libravatar Héctor Ramón Jiménez2022-07-081-40/+29
|
* Implement theme styling for `PickList` and `Menu`Libravatar Héctor Ramón Jiménez2022-06-071-2/+1
|
* Implement theme styling for `Container`Libravatar Héctor Ramón Jiménez2022-06-071-1/+1
|
* Implement theme styling for `TextInput`Libravatar Héctor Ramón Jiménez2022-06-071-1/+1
|
* Implement theme styling for `Checkbox`Libravatar Héctor Ramón Jiménez2022-06-041-1/+1
|
* Implement theme styling for `Toggler`Libravatar Héctor Ramón Jiménez2022-06-011-1/+1
| | | | ... and wire up theming to the `styling` example.
* Implement theme styling for `Radio`Libravatar Héctor Ramón Jiménez2022-05-271-3/+3
|
* Rename `Variant` to `Style` and `Style` to `Appearance`Libravatar Héctor Ramón Jiménez2022-05-261-1/+1
|
* Draft first-class `Theme` supportLibravatar Héctor Ramón Jiménez2022-05-141-29/+38
| | | | RFC: https://github.com/iced-rs/rfcs/pull/6
* Indicate feature-flagged modules in documentationLibravatar Héctor Ramón Jiménez2022-05-021-0/+8
|
* Point repository links to `0.4` branch in documentationLibravatar Héctor Ramón Jiménez2022-04-301-1/+1
|
* Remove redundant `widget` modules in subcratesLibravatar Héctor Ramón Jiménez2022-03-091-40/+179
| | | | Instead, we can define the type aliases just once in the root crate!
* Replace `iced_web` with WebGL support in `wgpu` :tada:Libravatar Héctor Ramón Jiménez2022-01-281-53/+43
|
* Introduce first-class `svg` module in `iced_native`Libravatar Héctor Ramón Jiménez2021-10-311-1/+2
|
* Introduce first-class `image` module in `iced_native`Libravatar Héctor Ramón Jiménez2021-10-311-1/+2
|
* Remove `widget` module re-exports in `iced_native`Libravatar Héctor Ramón Jiménez2021-10-311-3/+3
|
* Implement `Toggler` widget for iced_nativeLibravatar Kaiden422021-06-031-3/+3
|
* feat(native): add Tooltip widgetLibravatar Yusuf Bera Ertan2021-02-151-2/+3
|
* Merge remote-tracking branch 'tarkah/image-pane' into image-paneLibravatar Héctor Ramón Jiménez2020-12-181-1/+2
|\
| * remove re-export on viewer::StateLibravatar Cory Forsstrom2020-05-271-1/+3
| |
| * rename to image::ViewerLibravatar Cory Forsstrom2020-05-261-12/+4
| |
| * Rename and add to iced image moduleLibravatar Cory Forsstrom2020-05-261-9/+11
| |
| * Add `ImagePane` widgetLibravatar Cory Forsstrom2020-05-261-2/+8
| |