Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge pull request #1669 from GyulyVGC/master | 2023-03-27 | 1 | -11/+25 | |
|\ | | | | | Added scrollable style `focused` to be displayed when mouse is over the scrollable area | ||||
| * | Introduce `is_mouse_over_scrollbar` to `StyleSheet::hovered` for `Scrollable` | 2023-03-27 | 1 | -11/+25 | |
| | | |||||
* | | Remove `Fill` variant for `Alignment` | 2023-02-27 | 1 | -1/+0 | |
|/ | | | | | Implementing this generically in our `flex` logic has an exponential cost. Let's explore other options! | ||||
* | Use `f32` in `Length::Units` and rename it to `Fixed` | 2023-02-17 | 1 | -11/+11 | |
| | |||||
* | Add some missing `spacing` to `scrollable` example | 2023-01-08 | 1 | -0/+2 | |
| | |||||
* | Introduce `RelativeOffset` type in `scrollable` | 2023-01-08 | 1 | -7/+7 | |
| | |||||
* | Reworked Scrollable to account for lack of widget order guarantees. | 2022-12-29 | 2 | -81/+55 | |
| | | | | Fixed thumb "snapping" bug on scrollable when cursor is out of bounds. | ||||
* | Add multidirectional scrolling capabilities to the existing Scrollable. | 2022-12-29 | 3 | -183/+324 | |
| | |||||
* | Box `Custom` in `Theme` | 2022-11-03 | 1 | -1/+1 | |
| | |||||
* | Remove unnecessary `clone` in `scrollable` example | 2022-11-03 | 1 | -1/+1 | |
| | |||||
* | Run `cargo fmt` | 2022-11-03 | 1 | -3/+1 | |
| | |||||
* | fix: clippy lint ↵ | 2022-11-03 | 1 | -1/+1 | |
| | | | | https://rust-lang.github.io/rust-clippy/master/index.html#large_enum_variant | ||||
* | fix: scrollable example | 2022-11-03 | 1 | -5/+14 | |
| | |||||
* | Implement `scrollable::snap_to` operation | 2022-08-04 | 1 | -16/+36 | |
| | |||||
* | Fix `clippy` lints | 2022-07-27 | 1 | -1/+1 | |
| | |||||
* | Replace stateful widgets with new `iced_pure` API | 2022-07-27 | 1 | -94/+76 | |
| | |||||
* | Remove `style` module leftover in `scrollable` example | 2022-06-07 | 1 | -52/+0 | |
| | |||||
* | Implement theme styling for `Scrollable` | 2022-06-07 | 2 | -92/+14 | |
| | |||||
* | Implement theme styling for `TextInput` | 2022-06-07 | 1 | -6/+0 | |
| | |||||
* | Implement theme styling for `Rule` | 2022-06-01 | 2 | -25/+3 | |
| | |||||
* | Implement theme styling for `Radio` | 2022-05-27 | 2 | -47/+8 | |
| | |||||
* | Update Rust edition to 2021 :tada: | 2022-02-09 | 1 | -1/+1 | |
| | |||||
* | [ImgBot] Optimize images | 2022-02-07 | 1 | -0/+0 | |
| | | | | | | | | | | | | | | | | | | | | | *Total -- 967.49kb -> 703.99kb (27.24%) /docs/images/radio.png -- 5.29kb -> 1.58kb (70.18%) /docs/images/text_input.png -- 3.18kb -> 1.27kb (60.17%) /docs/images/checkbox.png -- 5.56kb -> 2.22kb (60.17%) /examples/color_palette/screenshot.png -- 102.74kb -> 43.75kb (57.42%) /examples/tour/images/ferris.png -- 32.29kb -> 15.91kb (50.73%) /docs/graphs/ecosystem.png -- 124.13kb -> 67.44kb (45.67%) /docs/graphs/iced.png -- 97.75kb -> 53.27kb (45.5%) /docs/graphs/native.png -- 57.90kb -> 33.67kb (41.85%) /docs/images/text.png -- 4.95kb -> 2.99kb (39.61%) /docs/graphs/foundations.png -- 18.19kb -> 11.19kb (38.46%) /examples/scrollable/screenshot.png -- 144.78kb -> 102.53kb (29.18%) /examples/svg/resources/tiger.svg -- 67.02kb -> 64.50kb (3.76%) /docs/logo.svg -- 1.37kb -> 1.35kb (1.57%) /docs/images/todos_desktop.jpg -- 302.36kb -> 302.33kb (0.01%) Signed-off-by: ImgBotApp <ImgBotHelp@gmail.com> | ||||
* | Fix links | 2022-02-07 | 1 | -2/+2 | |
| | | | | | | Change dead links to updated ones. Change/Convert all file links to relative links so they are branch agnostic. | ||||
* | Remove ambiguous `text_color` attributes for `Checkbox` and `Radio` | 2022-01-20 | 1 | -0/+1 | |
| | | | | Instead, always use a `StyleSheet`. | ||||
* | Merge pull request #1106 from ↵ | 2021-11-10 | 1 | -1/+1 | |
|\ | | | | | | | | | RamType0/RemoveUnnecessaryStringAllocationInExample Remove unnecessary String allocation | ||||
| * | Remove unnecessary String allocation | 2021-11-02 | 1 | -1/+1 | |
| | | | | | | | | Remove unnecessary String allocation by passing &format! or &x.to_string as impl Into<String> | ||||
* | | Reintroduce `Box` for `style_sheet` in `Scrollable` | 2021-10-31 | 2 | -3/+3 | |
| | | |||||
* | | Reintroduce `Box` for `style_sheet` in `Radio` | 2021-10-31 | 2 | -3/+3 | |
| | | |||||
* | | Reintroduce `Box` for `style_sheet` in `Container` | 2021-10-31 | 2 | -4/+4 | |
| | | |||||
* | | Wire up styling to `Radio` in `iced_native` | 2021-10-20 | 2 | -3/+3 | |
| | | |||||
* | | Wire up `container` styling to `iced_native` | 2021-10-18 | 2 | -4/+4 | |
| | | |||||
* | | Draw scrollbar in `Widget::draw` for `Scrollable` | 2021-10-18 | 2 | -3/+3 | |
|/ | |||||
* | Add scrolling progress indicators to `scrollable` example | 2021-06-04 | 1 | -4/+32 | |
| | |||||
* | Add buttons to control scrolling in `scrollable` example | 2021-06-04 | 1 | -12/+40 | |
| | |||||
* | Fix `Scrollable` scrollbar being rendered behind contents | 2021-05-03 | 2 | -14/+29 | |
| | | | | ... by issuing a new clip layer just for the scrollbar itself. | ||||
* | Use `f32` for `border_width` and `border_radius` | 2020-11-23 | 1 | -6/+6 | |
| | |||||
* | Update screenshot of `scrollable` example | 2020-10-24 | 1 | -0/+0 | |
| | |||||
* | Reduce contrast of dark theme in `scrollable` example | 2020-10-24 | 1 | -39/+37 | |
| | |||||
* | Improve minor details in `scrollable` example | 2020-10-24 | 2 | -249/+260 | |
| | | | | | | | - Rename `Config` to `Variant` - Include `State` in `Variant` to avoid `zip` - Break long string literal - Split `style` module into its own file | ||||
* | Add scrollable example program | 2020-10-22 | 4 | -0/+389 | |