Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Keep `tour` buttons solid | 2023-05-19 | 1 | -50/+5 | |
| | | | | The gradients feel a bit out of place currently. | ||||
* | Implement `custom` helper for `theme::Button` | 2023-05-19 | 1 | -8/+6 | |
| | |||||
* | Remove `Builder` abstractions for gradients | 2023-05-19 | 1 | -14/+16 | |
| | |||||
* | Added support for gradients as background variants + other optimizations. | 2023-05-11 | 1 | -8/+50 | |
| | |||||
* | Merge branch 'master' into advanced-text | 2023-04-17 | 1 | -19/+65 | |
|\ | |||||
| * | Rename `on_change` to `on_input` for `TextInput` | 2023-04-12 | 1 | -1/+1 | |
| | | |||||
| * | Introduce disabled state for `TextInput` | 2023-04-12 | 1 | -7/+4 | |
| | | |||||
| * | Fix `current` step in `tour` | 2023-04-11 | 1 | -1/+1 | |
| | | |||||
| * | Move `ICON_FONT` constant in `tour` to `text_input` helper | 2023-04-11 | 1 | -5/+5 | |
| | | |||||
| * | Collapse `Font` import in `tour` example | 2023-04-11 | 1 | -2/+1 | |
| | | |||||
| * | Rename `IconPosition` to `Side` in `text_input` | 2023-04-11 | 1 | -1/+1 | |
| | | |||||
| * | Move `Icon` layout logic to `layout` in `text_input` | 2023-04-11 | 1 | -2/+3 | |
| | | | | | | | | Also add `Icon::spacing` field. | ||||
| * | Use `f32` for `Icon::size` and remove unnecessary conversions | 2023-04-11 | 1 | -1/+1 | |
| | | |||||
| * | Removed text_input example in favor for Tour | 2023-04-11 | 1 | -12/+66 | |
|/ | |||||
* | Use `f32` in `Length::Units` and rename it to `Fixed` | 2023-02-17 | 1 | -4/+4 | |
| | |||||
* | Fix: Clippy lint 'uninlined_format_args' | 2023-01-27 | 1 | -4/+4 | |
| | |||||
* | Reintroduce `Element::explain` | 2022-08-26 | 1 | -4/+12 | |
| | |||||
* | Draft widget operations | 2022-07-28 | 1 | -4/+2 | |
| | |||||
* | Replace stateful widgets with new `iced_pure` API | 2022-07-27 | 1 | -347/+187 | |
| | |||||
* | Add `theme::Application` styling support to `Sandbox` | 2022-07-08 | 1 | -59/+9 | |
| | |||||
* | Introduce `StyleSheet` for `Text` widget | 2022-06-29 | 1 | -2/+2 | |
| | |||||
* | Add "Theming" section to the `tour` example | 2022-05-26 | 1 | -10/+60 | |
| | |||||
* | Implement theme styling for `Slider` | 2022-05-26 | 1 | -1/+1 | |
| | |||||
* | Draft first-class `Theme` support | 2022-05-14 | 1 | -38/+11 | |
| | | | | RFC: https://github.com/iced-rs/rfcs/pull/6 | ||||
* | Merge branch 'master' into virtual-widgets | 2022-03-07 | 1 | -21/+59 | |
|\ | |||||
| * | Showcase only `Contain`, `Cover`, and `Fill` image modes in `tour` | 2022-02-23 | 1 | -4/+4 | |
| | | |||||
| * | Keep using Ferris in the image section of the `tour` | 2022-02-16 | 1 | -26/+7 | |
| | | | | | | | | Wide ferris is cute :3 | ||||
| * | Expose `ContentFit` in root | 2022-02-16 | 1 | -4/+3 | |
| | | |||||
| * | Rename `Image::fit` to `content_fit` | 2022-02-16 | 1 | -2/+2 | |
| | | | | | | | | ... just for consistency! | ||||
| * | Add support for `ContentFit` for `Image` | 2022-02-16 | 1 | -20/+78 | |
| | | |||||
* | | Expose reusable `Button` logic | 2022-02-11 | 1 | -1/+1 | |
|/ | | | | ... and reuse it in `iced_pure`! | ||||
* | Fix path to ferris.png | 2021-12-11 | 1 | -1/+1 | |
| | | | | Fixes https://github.com/iced-rs/iced/issues/1156 | ||||
* | Fix formatting with `cargo fmt` | 2021-11-10 | 1 | -3/+1 | |
| | |||||
* | Remove unnecessary String allocation | 2021-11-02 | 1 | -5/+5 | |
| | | | | Remove unnecessary String allocation by passing &format! or &x.to_string as impl Into<String> | ||||
* | Refactor alignment types into an `alignment` module | 2021-09-20 | 1 | -11/+11 | |
| | |||||
* | Add some horizontal padding to `toggler` section in `tour` example | 2021-06-03 | 1 | -5/+8 | |
| | |||||
* | Add `Toggler` to tour example | 2021-06-03 | 1 | -1/+28 | |
| | |||||
* | Use `f32` for `border_width` and `border_radius` | 2020-11-23 | 1 | -1/+1 | |
| | |||||
* | Require `Clone` for `Message` early when needed | 2020-10-17 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | Prior to this change, the widgets that needed a `Clone` bound on `Message` to implement the `Widget` trait could be created with a non-cloneable `Message`. As a consequence, the compiler complained only when actually trying to use the `Widget` trait. Normally, this happens when trying to `push` the widget in a container or turn it into an `Element`. Furthermore, the compiler error in this case does not mention `Message` nor the `Clone` bound, but instead complains about a missing `From` implementation. Thus, it can easily cause confusion! This change introduces `Clone` bounds in the main implementation of the widgets that need it to properly implement the `Widget` trait. As a result, the compiler complains early when trying to create one of these widgets with a non-cloneable `Message` and explicitly mentions that the `Message` needs to implement `Clone`. | ||||
* | Make `Application` and `Sandbox` return a `Result` | 2020-09-08 | 1 | -1/+1 | |
| | |||||
* | Use generic `Slider` in `tour` example | 2020-06-13 | 1 | -40/+37 | |
| | |||||
* | Add `step` member to slider widgets | 2020-06-11 | 1 | -9/+18 | |
| | | | | | | Both the native and the web slider now have a member `step` to control the least possible change of the slider's value. It defaults to 1.0 for all sliders and can be adjusted with the step method. | ||||
* | Revert "Target physical pixels for quads in `iced_glow`" | 2020-05-28 | 1 | -2/+2 | |
| | | | | This reverts commit 45511a442f707e93fe6e568d2100756b63af7362. | ||||
* | Use `Sandbox` in `tour` example | 2020-05-28 | 1 | -22/+14 | |
| | |||||
* | Target physical pixels for quads in `iced_glow` | 2020-05-27 | 1 | -2/+2 | |
| | |||||
* | Implement `iced_glutin` :tada: | 2020-05-21 | 1 | -24/+16 | |
| | |||||
* | Rename `window::Backend` to `Compositor` | 2020-05-19 | 1 | -1/+1 | |
| | |||||
* | Draft first working version of `iced_glow` :tada: | 2020-05-19 | 1 | -26/+42 | |
| | |||||
* | Simplify `Language` conversion in `tour` | 2020-04-06 | 1 | -6/+5 | |
| | |||||
* | Radiobutton label is now `impl Into<String>` | 2020-04-05 | 1 | -1/+2 | |
| |