Re-organize the last page of the tutorial

Based on the reddit feedback, add links to the API docs and restructure
the list a little.
This commit is contained in:
Simon Hausmann 2022-03-17 16:17:48 +01:00 committed by Simon Hausmann
parent 526166090e
commit 3f53ce2f92
2 changed files with 16 additions and 10 deletions

View file

@ -1,9 +1,11 @@
# Conclusion
In this tutorial, we have demonstrated how to combine some built-in Slint elements with C++ code to build a little
game. There are many more features that we have not talked about, such as layouts, widgets, or styling. Have a look
at the [examples](https://github.com/slint-ui/slint/tree/master/examples) in the Slint repo to
see how these look like and can be used, such as the [todo example](https://github.com/slint-ui/slint/tree/master/examples/todo).
game. There are many more features that we have not talked about, such as layouts, widgets, or styling.
A slightly more polished version of this memory puzzle game is [available in the Slint repository](
https://github.com/slint-ui/slint/tree/master/examples/memory). And you can <a href="https://slint-ui.com/demos/memory/" target="_blank">play the wasm version</a> in your browser.
We recommend the following links to continue:
* [Examples](https://github.com/slint-ui/slint/tree/master/examples): In the Slint repository we have collected a few demos and examples. These are a great starting point to learn how to use many Slint features.
* [Todo Example](https://github.com/slint-ui/slint/tree/master/examples/todo): This is one of the examples that implements a classic use-case.
* [Memory Puzzzle](https://github.com/slint-ui/slint/tree/master/examples/memory): This is a slightly more polished version of the code in this example. And you can <a href="https://slint-ui.com/demos/memory/" target="_blank">play the wasm version</a> in your browser.
* [Slint API Docs](https://slint-ui.com/docs/cpp/): The reference documentation for the C++ library.