@@ -27,6 +27,8 @@ use crate::{Color, Command, Element, Executor, Settings, Subscription};
27
27
/// a dummy file of 100 MB and tracks the download progress.
28
28
/// - [`events`], a log of native events displayed using a conditional
29
29
/// [`Subscription`].
30
+ /// - [`game_of_life`], an interactive version of the [Game of Life], invented
31
+ /// by [John Horton Conway].
30
32
/// - [`pokedex`], an application that displays a random Pokédex entry (sprite
31
33
/// included!) by using the [PokéAPI].
32
34
/// - [`solar_system`], an animated solar system drawn using the [`Canvas`] widget
@@ -35,14 +37,15 @@ use crate::{Color, Command, Element, Executor, Settings, Subscription};
35
37
/// to listen to time.
36
38
/// - [`todos`], a todos tracker inspired by [TodoMVC].
37
39
///
38
- /// [The repository has a bunch of examples]: https://github.com/hecrj/iced/tree/0.1/examples
39
- /// [`clock`]: https://github.com/hecrj/iced/tree/0.1/examples/clock
40
- /// [`download_progress`]: https://github.com/hecrj/iced/tree/0.1/examples/download_progress
41
- /// [`events`]: https://github.com/hecrj/iced/tree/0.1/examples/events
42
- /// [`pokedex`]: https://github.com/hecrj/iced/tree/0.1/examples/pokedex
43
- /// [`solar_system`]: https://github.com/hecrj/iced/tree/0.1/examples/solar_system
44
- /// [`stopwatch`]: https://github.com/hecrj/iced/tree/0.1/examples/stopwatch
45
- /// [`todos`]: https://github.com/hecrj/iced/tree/0.1/examples/todos
40
+ /// [The repository has a bunch of examples]: https://github.com/hecrj/iced/tree/0.2/examples
41
+ /// [`clock`]: https://github.com/hecrj/iced/tree/0.2/examples/clock
42
+ /// [`download_progress`]: https://github.com/hecrj/iced/tree/0.2/examples/download_progress
43
+ /// [`events`]: https://github.com/hecrj/iced/tree/0.2/examples/events
44
+ /// [`game_of_life`]: https://github.com/hecrj/iced/tree/0.2/examples/game_of_life
45
+ /// [`pokedex`]: https://github.com/hecrj/iced/tree/0.2/examples/pokedex
46
+ /// [`solar_system`]: https://github.com/hecrj/iced/tree/0.2/examples/solar_system
47
+ /// [`stopwatch`]: https://github.com/hecrj/iced/tree/0.2/examples/stopwatch
48
+ /// [`todos`]: https://github.com/hecrj/iced/tree/0.2/examples/todos
46
49
/// [`Sandbox`]: crate::Sandbox
47
50
/// [`Canvas`]: crate::widget::Canvas
48
51
/// [PokéAPI]: https://pokeapi.co/
0 commit comments