diff options
author | 2020-02-21 15:12:27 +0100 | |
---|---|---|
committer | 2020-02-21 15:20:05 +0100 | |
commit | b0cf47cc2b736080d25a6fe48d17ef5086d6a39a (patch) | |
tree | 14e343816af52ee12635fcfec9046e9086519523 /examples/README.md | |
parent | 9758c121764a6e8e5a45b8a66915127b31e61df7 (diff) | |
download | iced-b0cf47cc2b736080d25a6fe48d17ef5086d6a39a.tar.gz iced-b0cf47cc2b736080d25a6fe48d17ef5086d6a39a.tar.bz2 iced-b0cf47cc2b736080d25a6fe48d17ef5086d6a39a.zip |
Create `README` files for all the examples
Diffstat (limited to 'examples/README.md')
-rw-r--r-- | examples/README.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/examples/README.md b/examples/README.md index a9ab546f..04399b93 100644 --- a/examples/README.md +++ b/examples/README.md @@ -69,7 +69,8 @@ cargo run --package styling ## Extras A bunch of simpler examples exist: -- [`bezier_tool`](bezier_tool), a Paint-like tool for drawing Bezier curves using [`lyon`]. +- [`bezier_tool`](bezier_tool), a Paint-like tool for drawing Bézier curves using [`lyon`]. +- [`clock`](clock), an application that uses the `Canvas` widget to draw a clock and its hands to display the current time. - [`counter`](counter), the classic counter example explained in the [`README`](../README.md). - [`custom_widget`](custom_widget), a demonstration of how to build a custom widget that draws a circle. - [`events`](events), a log of native events displayed using a conditional `Subscription`. @@ -77,6 +78,7 @@ A bunch of simpler examples exist: - [`integration`](integration), a demonstration of how to integrate Iced in an existing graphical application. - [`pokedex`](pokedex), an application that displays a random Pokédex entry (sprite included!) by using the [PokéAPI]. - [`progress_bar`](progress_bar), a simple progress bar that can be filled by using a slider. +- [`solar_system`](solar_system), an animated solar system drawn using the `Canvas` widget and showcasing how to compose different transforms. - [`stopwatch`](stopwatch), a watch with start/stop and reset buttons showcasing how to listen to time. - [`svg`](svg), an application that renders the [Ghostscript Tiger] by leveraging the `Svg` widget. |