Kivy Also has Its Own Language, `.kv`
ThePeeps191 opened this issue · 12 comments
We have the Kivy module in Python: Kivy.py
, but Kivy also has its own language: Kivy with the .kv
extension. Should we make any changes?
Is the code any different?
yes
.kv is its own language, VERY different from python
it's called the "Kivy design language"
example:
Label:
text: "Hello World"
(view https://www.techwithtim.net/tutorials/kivy-tutorial/the-kv-design-language-kv-file/)
Then we should replace the Python lib with the language.
The language is called Kv, not Kivy, as can be seen on the website.
as quoted:
The KV language, sometimes called kvlang or the kivy language, allows you to create your widget tree in a declarative way and to bind widget properties to each other or to callbacks in a natural manner.
its also called the kivy language
@ThePeeps191 but the correct name is still KV
Also, I think the Python one should be kept. Kivy (the Python module) and KV (the language) are different things.
@ThePeeps191 Like you said, it's VERY different.