summaryrefslogtreecommitdiffstats
path: root/examples/styling (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Use `Length::Fill` instead of fixed length in `styling` exampleLibravatar Héctor Ramón2023-09-031-1/+1
|
* fix(examples-styling): fixed checkbox and toggler getting hidden behind ↵Libravatar Akshay Raina2023-09-031-0/+1
| | | | | | scrollbar Column inside scrollable is having Length::Fill so it is taking entire width thus hiding check box and toggler. Added fixed width to scrollable so Lenth::Fill will be relative to fixed width
* Center `Submit` button vertically in `styling` exampleLibravatar Héctor Ramón Jiménez2023-06-211-1/+3
|
* 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-7/+4
|
* Use `f32` in `Length::Units` and rename it to `Fixed`Libravatar Héctor Ramón Jiménez2023-02-171-8/+4
|
* Fix: Clippy lint 'uninlined_format_args'Libravatar 13r0ck2023-01-271-1/+1
|
* Box `Custom` in `Theme`Libravatar Héctor Ramón Jiménez2022-11-031-1/+1
|
* Derive `Copy` for `Theme`Libravatar Héctor Ramón Jiménez2022-11-031-1/+1
|
* Make `Theme::Custom` fields opaqueLibravatar Héctor Ramón Jiménez2022-11-031-48/+41
|
* fix: clippy lint ↵Libravatar Ashley Wulber2022-11-031-3/+6
| | | | https://rust-lang.github.io/rust-clippy/master/index.html#large_enum_variant
* refactor: remove once_cell from styling exampleLibravatar Ashley Wulber2022-11-032-14/+15
|
* refactor: undo changes to radioLibravatar Ashley Wulber2022-11-031-9/+20
|
* wip: Custom palette for built in themeLibravatar Ashley Wulber2022-11-032-3/+22
|
* Replace stateful widgets with new `iced_pure` APILibravatar Héctor Ramón Jiménez2022-07-271-62/+47
|
* Implement theme styling for `Scrollable`Libravatar Héctor Ramón Jiménez2022-06-071-103/+4
|
* Implement theme styling for `TextInput`Libravatar Héctor Ramón Jiménez2022-06-071-60/+3
|
* Implement theme styling for `Checkbox`Libravatar Héctor Ramón Jiménez2022-06-041-40/+3
|
* Implement theme styling for `ProgressBar`Libravatar Héctor Ramón Jiménez2022-06-011-25/+3
|
* Implement theme styling for `Rule`Libravatar Héctor Ramón Jiménez2022-06-011-28/+4
|
* Use `Theme` background in `styling` exampleLibravatar Héctor Ramón Jiménez2022-06-011-27/+2
|
* Implement theme styling for `Toggler`Libravatar Héctor Ramón Jiménez2022-06-011-43/+10
| | | | ... and wire up theming to the `styling` example.
* Implement theme styling for `Radio`Libravatar Héctor Ramón Jiménez2022-05-271-42/+9
|
* Fix examples and doc-testsLibravatar Héctor Ramón Jiménez2022-05-261-54/+4
|
* Draft first-class `Theme` supportLibravatar Héctor Ramón Jiménez2022-05-141-73/+12
| | | | RFC: https://github.com/iced-rs/rfcs/pull/6
* Update Rust edition to 2021 :tada:Libravatar Héctor Ramón Jiménez2022-02-091-1/+1
|
* Remove ambiguous `text_color` attributes for `Checkbox` and `Radio`Libravatar Héctor Ramón Jiménez2022-01-201-1/+2
| | | | Instead, always use a `StyleSheet`.
* Add checkbox text_color stylingLibravatar Daniel May2021-11-141-0/+1
|
* Merge pull request #1106 from ↵Libravatar Héctor Ramón2021-11-101-1/+1
|\ | | | | | | | | RamType0/RemoveUnnecessaryStringAllocationInExample Remove unnecessary String allocation
| * Remove unnecessary String allocationLibravatar Ram.Type-02021-11-021-1/+1
| | | | | | | | Remove unnecessary String allocation by passing &format! or &x.to_string as impl Into<String>
* | Reintroduce `Box` for `style_sheet` in `TextInput`Libravatar Héctor Ramón Jiménez2021-10-311-3/+3
| |
* | Reintroduce `Box` for `style_sheet` in `Slider`Libravatar Héctor Ramón Jiménez2021-10-311-3/+3
| |
* | Reintroduce `Box` for `style_sheet` in `Scrollable`Libravatar Héctor Ramón Jiménez2021-10-311-3/+3
| |
* | Reintroduce `Box` for `style_sheet` in `Radio`Libravatar Héctor Ramón Jiménez2021-10-311-3/+3
| |
* | Reintroduce `Box` for `style_sheet` in `Container`Libravatar Héctor Ramón Jiménez2021-10-311-3/+3
| |
* | Reintroduce `Box` for `style_sheet` in `Checkbox`Libravatar Héctor Ramón Jiménez2021-10-311-3/+3
| |
* | Reintroduce `Box` for `style_sheet` in `Button`Libravatar Héctor Ramón Jiménez2021-10-311-4/+4
| |
* | Remove `Renderer` trait for `Checkbox`Libravatar Héctor Ramón Jiménez2021-10-211-3/+3
| |
* | Wire up styling to `Radio` in `iced_native`Libravatar Héctor Ramón Jiménez2021-10-201-3/+3
| |
* | Implement `Widget::draw` for `TextInput`Libravatar Héctor Ramón Jiménez2021-10-201-3/+3
| |
* | Wire up styling to `Slider` in `iced_native`Libravatar Héctor Ramón Jiménez2021-10-201-3/+3
| |
* | Wire up styling to `Button` in `iced_native`Libravatar Héctor Ramón Jiménez2021-10-181-4/+4
| |
* | Wire up `container` styling to `iced_native`Libravatar Héctor Ramón Jiménez2021-10-181-3/+3
| |
* | Draw scrollbar in `Widget::draw` for `Scrollable`Libravatar Héctor Ramón Jiménez2021-10-181-3/+3
|/
* Refactor alignment types into an `alignment` moduleLibravatar Héctor Ramón Jiménez2021-09-201-4/+4
|
* Introduce and use `CrossAlign` enum for `Column` and `Row`Libravatar Héctor Ramón Jiménez2021-09-201-4/+4
|
* Add `Toggler` to styling exampleLibravatar Kaiden422021-06-031-9/+64
|
* Run cargo fmtLibravatar Dispersia2021-04-121-1/+1
|
* Use `f32` for `border_width` and `border_radius`Libravatar Héctor Ramón Jiménez2020-11-231-18/+18
|
* Make `Application` and `Sandbox` return a `Result`Libravatar Héctor Ramón Jiménez2020-09-081-1/+1
|