From ba95042fff378213f5029b2b164d79e768482a47 Mon Sep 17 00:00:00 2001 From: Casper Storm Date: Mon, 12 Dec 2022 15:27:00 +0100 Subject: Vertical orientation added to Slider. --- examples/slider/README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 examples/slider/README.md (limited to 'examples/slider/README.md') diff --git a/examples/slider/README.md b/examples/slider/README.md new file mode 100644 index 00000000..0d409dc6 --- /dev/null +++ b/examples/slider/README.md @@ -0,0 +1,14 @@ +## Slider + +A bar and a handle that selects a single value from a range of values. +Can be oriented both vertical and horizontal. + +
+ +
+ +You can run it with `cargo run`: + +``` +cargo run --package slider +``` -- cgit From 55f36bc865652009f1c13e3da6f62d55964a10c2 Mon Sep 17 00:00:00 2001 From: Casper Storm Date: Tue, 13 Dec 2022 10:13:27 +0100 Subject: updated README for slider example --- examples/slider/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples/slider/README.md') diff --git a/examples/slider/README.md b/examples/slider/README.md index 0d409dc6..829d8285 100644 --- a/examples/slider/README.md +++ b/examples/slider/README.md @@ -1,7 +1,7 @@ ## Slider -A bar and a handle that selects a single value from a range of values. -Can be oriented both vertical and horizontal. +A `Slider` is a bar and a handle that selects a single value from a range of values. +There exists both `Slider` and `VerticalSlider` depending on which orientation you need.
-- cgit