summaryrefslogtreecommitdiffstats
path: root/web/src/widget/slider.rs (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-01-28Replace `iced_web` with WebGL support in `wgpu` :tada:Libravatar Héctor Ramón Jiménez1-183/+0
2021-10-31Reintroduce `Box` for `style_sheet` in `Slider`Libravatar Héctor Ramón Jiménez1-2/+5
2021-10-20Wire up styling to `Slider` in `iced_native`Libravatar Héctor Ramón Jiménez1-4/+4
2021-02-16Allow dead code explicitly in `iced_web`Libravatar Héctor Ramón Jiménez1-0/+2
2020-11-26Use recently stabilized intra-doc linksLibravatar Héctor Ramón Jiménez1-18/+0
See RFC: https://github.com/rust-lang/rfcs/blob/master/text/1946-intra-rustdoc-links.md
2020-06-13Update `Slider` docs in `iced_web`Libravatar Héctor Ramón Jiménez1-1/+2
2020-06-13Make `Slider` value generic in `iced_web`Libravatar Héctor Ramón Jiménez1-21/+40
2020-06-11Add `step` member to slider widgetsLibravatar Sebastian Zivota1-2/+14
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.
2020-03-06Remove counterintuitive constant functionsLibravatar Héctor Ramón Jiménez1-1/+1
2020-02-06Expose styling types for `slider` in `iced_web`Libravatar Héctor Ramón Jiménez1-1/+13
2020-02-05Rename module `style` to `css` in `iced_web`Libravatar Héctor Ramón Jiménez1-2/+2
2020-02-04Support event subscriptions in `iced_web`Libravatar Héctor Ramón Jiménez1-3/+2
Also improves the overall web runtime, avoiding nested update loops.
2020-01-13Remove `Message: Clone` bound in some web widgetsLibravatar Héctor Ramón Jiménez1-2/+2
2019-11-29Make many functions `const`Libravatar Nikolai Vazquez1-1/+1
The point is to set up repeated components or boilerplate before their use sites. The majority of these make sense as `const`. However, some functions such as those regarding state may not make sense as `const`.
2019-11-23Make `tour` work with `iced_web` again :tada:Libravatar Héctor Ramón Jiménez1-23/+23
- Implements `TextInput`, `Scrollable`, and `Container` - Adds basic style generation
2019-11-22Write docs for `iced_web`Libravatar Héctor Ramón Jiménez1-0/+36
2019-11-21Move widgets from `core` to `native` and `web`Libravatar Héctor Ramón Jiménez1-2/+57
Also made fields private and improved `Renderer` traits.
2019-09-21Make example work on web and update READMEsLibravatar Héctor Ramón Jiménez1-3/+2
2019-09-20Create `iced_core` and `iced_native`Libravatar Héctor Ramón Jiménez1-2/+2
2019-09-15Draft nodes for missing widgetsLibravatar Héctor Ramón Jiménez1-4/+51
2019-09-14Draft web runtime and widgetsLibravatar Héctor Ramón Jiménez1-0/+16