summaryrefslogtreecommitdiffstats
path: root/native/src/widget/helpers.rs (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-04-13Rename `MouseListener` to `MouseArea`Libravatar Héctor Ramón Jiménez1-3/+3
2023-04-13feat(native): Add MouseListener widgetLibravatar Michael Aaron Murphy1-0/+10
2023-04-12Move `radio` example to `Radio` docsLibravatar Héctor Ramón Jiménez1-1/+1
2023-04-12Introduce disabled state for `TextInput`Libravatar Dan Mishin1-2/+1
2023-03-04Create `iced_widget` subcrate and re-organize the whole codebaseLibravatar Héctor Ramón Jiménez1-317/+0
2023-02-17Use `f32` in `Length::Units` and rename it to `Fixed`Libravatar Héctor Ramón Jiménez1-5/+9
2023-01-04use same name & order for checkbox::new and helperLibravatar 13r0ck1-1/+1
The helper function for the checkbox widget switched the order and name of the arguments passed when creating the checkbox widget. This just standardizes the order whether the dev is using the helper or the associated function. Continuation of https://github.com/iced-rs/iced/pull/1616
2022-12-22Use same name & order for toggler::new and helperLibravatar 13r0ck1-1/+1
The helper function for the toggler widget switched the order and name of the arguments passed when creating the toggler widget. This just standardizes the order whether the dev is using the helper or the associated function.
2022-12-13Split vertical orientation into VerticalSliderLibravatar Casper Storm1-0/+17
2022-12-06Remove `appearance` from `Handle`Libravatar Héctor Ramón Jiménez1-1/+1
... and pass it directly to `Renderer::draw` instead.
2022-12-06feat: SVG styling with icon fill colorLibravatar Michael Aaron Murphy1-1/+7
2022-11-10Fix broken documentation linksLibravatar Héctor Ramón Jiménez1-1/+1
2022-11-09Introduce `Custom` variants for every style in the built-in `Theme`Libravatar Héctor Ramón Jiménez1-1/+8
2022-11-03refactor: undo changes to radioLibravatar Ashley Wulber1-1/+1
2022-11-03wip: Custom palette for built in themeLibravatar Ashley Wulber1-1/+1
2022-09-21Take `Cow` in `Text::new`Libravatar Ram.Type-01-3/+3
2022-07-28Draft widget operationsLibravatar Héctor Ramón Jiménez1-2/+2
2022-07-27Fix `clippy` lintsLibravatar Héctor Ramón Jiménez1-6/+6
2022-07-27Use `ToString` for `Text::new` instead of `Into<String>`Libravatar Héctor Ramón Jiménez1-1/+1
2022-07-27Replace stateful widgets with new `iced_pure` APILibravatar Héctor Ramón Jiménez1-23/+59
2022-06-29Introduce `StyleSheet` for `Text` widgetLibravatar Héctor Ramón Jiménez1-2/+3
2022-06-07Implement theme styling for `PickList` and `Menu`Libravatar Héctor Ramón Jiménez1-0/+1
2022-06-07Implement theme styling for `Container`Libravatar Héctor Ramón Jiménez1-0/+2
2022-06-07Implement theme styling for `Scrollable`Libravatar Héctor Ramón Jiménez1-0/+1
2022-06-07Implement theme styling for `TextInput`Libravatar Héctor Ramón Jiménez1-0/+1
2022-06-04Implement theme styling for `Checkbox`Libravatar Héctor Ramón Jiménez1-0/+1
2022-06-01Implement theme styling for `ProgressBar`Libravatar Héctor Ramón Jiménez1-2/+6
2022-06-01Implement theme styling for `Rule`Libravatar Héctor Ramón Jiménez1-2/+10
2022-06-01Implement theme styling for `Toggler`Libravatar Héctor Ramón Jiménez1-0/+1
... and wire up theming to the `styling` example.
2022-05-27Implement theme styling for `Radio`Libravatar Héctor Ramón Jiménez1-2/+3
2022-05-26Rename `Variant` to `Style` and `Style` to `Appearance`Libravatar Héctor Ramón Jiménez1-1/+0
2022-05-26Implement theme styling for `Slider`Libravatar Héctor Ramón Jiménez1-3/+5
2022-05-14Draft first-class `Theme` supportLibravatar Héctor Ramón Jiménez1-1/+6
RFC: https://github.com/iced-rs/rfcs/pull/6
2022-05-04Fix vertical rule helperLibravatar Cory Forsstrom1-1/+1
2022-05-02Write documentation for `iced_pure`Libravatar Héctor Ramón Jiménez1-0/+50
2022-04-30Fix broken intra-doc links in documentationLibravatar Héctor Ramón Jiménez1-2/+8
2022-04-22Implemented Tooltip as PureLibravatar Casper Rogild Storm1-0/+11
2022-03-16Export widget modules in `iced_pure`Libravatar Héctor Ramón Jiménez1-0/+153
... and fix collisions with the new `helpers`