summaryrefslogtreecommitdiffstats
path: root/examples (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Introduce `RelativeOffset` type in `scrollable`Libravatar Héctor Ramón Jiménez2023-01-082-9/+9
|
* Reworked Scrollable to account for lack of widget order guarantees.Libravatar bungoboingo2022-12-293-83/+57
| | | | Fixed thumb "snapping" bug on scrollable when cursor is out of bounds.
* Add multidirectional scrolling capabilities to the existing Scrollable.Libravatar Bingus2022-12-295-186/+330
|
* Add `Renderer` argument to `operate`Libravatar Héctor Ramón Jiménez2022-12-221-0/+4
|
* Fix `clippy` lints for Rust 1.66Libravatar Héctor Ramón Jiménez2022-12-201-2/+4
|
* updated README for slider exampleLibravatar Casper Storm2022-12-131-2/+2
|
* Split vertical orientation into VerticalSliderLibravatar Casper Storm2022-12-131-13/+7
|
* Merge branch 'master' into feat/slider-orientationLibravatar Casper Storm2022-12-1321-128/+1348
|\
| * Showcase color filtering in existing `svg` exampleLibravatar Héctor Ramón Jiménez2022-12-064-106/+54
| | | | | | | | ... and remove the `svg_style` example
| * Remove `appearance` from `Handle`Libravatar Héctor Ramón Jiménez2022-12-061-4/+4
| | | | | | | | ... and pass it directly to `Renderer::draw` instead.
| * chore(examples): Add svg-style exampleLibravatar Michael Aaron Murphy2022-12-063-0/+89
| |
| * Ask `clippy` to behaveLibravatar Héctor Ramón Jiménez2022-12-021-0/+1
| |
| * Add `custom_quad` exampleLibravatar Héctor Ramón Jiménez2022-12-022-0/+169
| | | | | | | | Thanks to @rksm :bow:
| * Fix `border_radius` in `modal` exampleLibravatar Héctor Ramón Jiménez2022-12-021-1/+1
| |
| * Merge branch 'master' into non-uniform-border-radius-for-quadsLibravatar Héctor Ramón Jiménez2022-12-0210-10/+777
| |\
| | * Add on_submit & esc for exampleLibravatar Cory Forsstrom2022-11-291-9/+30
| | |
| | * Add modal exampleLibravatar Cory Forsstrom2022-11-292-0/+464
| | |
| | * Derive `Default` for `Rainbow` in `geometry` exampleLibravatar Héctor Ramón Jiménez2022-11-281-6/+5
| | |
| | * Re-introduce the `geometry` exampleLibravatar Héctor Ramón Jiménez2022-11-284-0/+243
| | |
| | * docs: Remove invalid links.Libravatar Leo Lee2022-11-251-1/+0
| | |
| | * Update todos example to select_all input on editLibravatar Cory Forsstrom2022-11-111-1/+5
| | |
| | * Introduce `Custom` variants for every style in the built-in `Theme`Libravatar Héctor Ramón Jiménez2022-11-091-4/+8
| | |
| | * Fixed issues with old GL versions ( <= 2.1 )Libravatar bungoboingo2022-11-082-0/+3
| | |
| | * Merge pull request #1504 from tarkah/feat/pane-grid-maximizeLibravatar Héctor Ramón2022-11-081-5/+35
| | |\ | | | | | | | | Add pane maximize / restore for `PaneGrid`
| | | * Update pane_grid example w/ maximize / restoreLibravatar Cory Forsstrom2022-11-021-5/+35
| | | |
| * | | non uniform border radius for quadsLibravatar Robert Krahn2022-11-031-1/+1
| |/ /
| * | Merge pull request #1448 from bungoboingo/fear/linear-gradientsLibravatar Héctor Ramón2022-11-039-300/+214
| |\ \ | | | | | | | | Add linear gradient support to canvas widget
| | * | Move `mesh::Style` to `triangle` and reuse it in `fill` and `stroke`Libravatar Héctor Ramón Jiménez2022-11-032-2/+2
| | | |
| | * | Refactor imports in `solar_system` exampleLibravatar Héctor Ramón Jiménez2022-11-031-11/+12
| | | |
| | * | Merge branch 'master' into fear/linear-gradientsLibravatar Héctor Ramón Jiménez2022-11-039-9/+306
| | |\ \
| | * | | Fix `multitouch` exampleLibravatar Héctor Ramón Jiménez2022-11-031-2/+3
| | | | |
| | * | | Run `cargo fmt`Libravatar Héctor Ramón Jiménez2022-11-033-22/+15
| | | | |
| | * | | Merge branch 'master' into fear/linear-gradientsLibravatar Bingus2022-10-073-0/+225
| | |\ \ \
| | * | | | Fixed import issue with canvas in the gradient mod for situations where ↵Libravatar shan2022-10-071-8/+2
| | | | | | | | | | | | | | | | | | | | | | | | canvas feature is not enabled.
| | * | | | Adjusted reexports for clarity.Libravatar shan2022-10-072-3/+2
| | | | | |
| | * | | | Added support for relative positioning of gradient fills. Addressed some PR ↵Libravatar shan2022-10-072-19/+29
| | | | | | | | | | | | | | | | | | | | | | | | feedback.
| | * | | | Fixed some imports/documentation.Libravatar shan2022-10-061-2/+2
| | | | | |
| | * | | | Added support for gradients to respect current frame transform.Libravatar shan2022-10-062-36/+37
| | | | | |
| | * | | | Fixed lint issues & cleaned up some documentation.Libravatar shan2022-10-064-12/+9
| | | | | |
| | * | | | Reduced memory transfer of OpenGL gradient uniform upload. Rearranged ↵Libravatar shan2022-10-051-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | gradient uniforms on OpenGL side to be more performant.
| | * | | | Readjusted namespaces, removed Geometry example as it's no longer relevant.Libravatar shan2022-10-055-258/+6
| | | | | |
| | * | | | Reworked wgpu buffers, updated glow side to have proper transform location ↵Libravatar shan2022-10-044-10/+11
| | | | | | | | | | | | | | | | | | | | | | | | storage, attempting to fix visibility modifiers, implemented some of the feedback received in initial PR.
| | * | | | Fixed some importing issues since you can use a Shader::Gradient outside a ↵Libravatar shan2022-09-302-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | Canvas widget, where it was previously only accessible.
| | * | | | Fixed issue where OpenGL would not render both shaders at once under certain ↵Libravatar shan2022-09-291-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | circumstances.
| | * | | | Adds linear gradient support to 2D meshes in the canvas widget.Libravatar shan2022-09-296-53/+220
| | | | | |
| * | | | | Box `Custom` in `Theme`Libravatar Héctor Ramón Jiménez2022-11-032-2/+2
| | | | | |
| * | | | | Remove unnecessary `clone` in `scrollable` exampleLibravatar Héctor Ramón Jiménez2022-11-031-1/+1
| | | | | |
| * | | | | Run `cargo fmt`Libravatar Héctor Ramón Jiménez2022-11-031-3/+1
| | | | | |
| * | | | | Derive `Copy` for `Theme`Libravatar Héctor Ramón Jiménez2022-11-032-2/+2
| | | | | |
| * | | | | Make `Theme::Custom` fields opaqueLibravatar Héctor Ramón Jiménez2022-11-031-48/+41
| | | | | |