Hacker News new | ask | show | jobs
by simopaa 3333 days ago
In the same vein, I'm curious about the workflow and tooling here. Being used to Visual Studio+XAML kind of WYSIWYG editing, is there anything similar in Kivy? Or do you write code, run app, close app, repeat?
1 comments

Kivy has interface definition language, similar to XAML, in the way YAML is similar to XML. It's called Kivy-language [1]

[1]: https://kivy.org/docs/api-kivy.lang.html

And to answer the parents question: there is to my knowledge no wysiwyg editor for kivy.

You can however write the code and directly execute it. There is no compile time to speak of, so it's not that bad.