docs: Remove builtin_ prefix from files in builtins dir

This commit is contained in:
Tobias Hunger 2023-02-24 11:28:10 +01:00 committed by Tobias Hunger
parent f7de5d4602
commit 1f877887cd
12 changed files with 66 additions and 65 deletions

View file

@ -2,13 +2,13 @@
The game is visually a little bare. Here are some ideas how you could make further changes to enhance it:
* The tiles could have rounded corners, to look a little less sharp. The [border-radius](https://slint-ui.com/docs/rust/slint/docs/builtin_elements/index.html#rectangle)
property of *Rectangle* can be used to achieve that.
- The tiles could have rounded corners, to look a little less sharp. The [border-radius](https://slint-ui.com/docs/slint/src/builtins/elements.html#rectangle)
property of _Rectangle_ can be used to achieve that.
* In real world memory games, the back of the tiles often have some common graphic. You could add an image with
the help of another *[Image](https://slint-ui.com/docs/rust/slint/docs/builtin_elements/index.html#image)*
element. Note that you may have to use *Rectangle*'s *[clip](https://slint-ui.com/docs/rust/slint/docs/builtin_elements/index.html#properties-1) property*
element around it to ensure that the image is clipped away when the curtain effect opens.
- In real world memory games, the back of the tiles often have some common graphic. You could add an image with
the help of another _[Image](https://slint-ui.com/docs/slint/src/builtins/elements.html#image)_
element. Note that you may have to use _Rectangle_'s _clip property_
element around it to ensure that the image is clipped away when the curtain effect opens.
Let us know in the comments on Github Discussions how you polished your code, or feel free to ask questions about
how to implement something.
Let us know in the comments on [Github Discussions](https://github.com/slint-ui/slint/discussions)
how you polished your code, or feel free to ask questions about how to implement something.