Kivy: Develop multi-touch enabled Python apps
11–20 of 49 posts
Re: Kivy: Develop multi-touch enabled Python apps
#12I've been using Kivy for a few months now. From my experience it's a great language/platform to develop proof of concepts and prototypes. Main drawbacks: - Community size - It's missing some general styling capabilities Because everything is in Python, it's really easy to get started. Give it a go!
Have you visited their irc chan on freenode (#kivy)? The people who created Kivy are there and very responsive - I remember one of them answering me on the 25th of December. Granted the community is small but I found the people there very lovely to interact.
Will try again though, I should probably also be more responsive myself to questions of others.
Re: Kivy: Develop multi-touch enabled Python apps
#13I've been using Kivy for a few months now. From my experience it's a great language/platform to develop proof of concepts and prototypes. Main drawbacks: - Community size - It's missing some general styling capabilities Because everything is in Python, it's really easy to get started. Give it a go!
Compared with Qt and Tk for Python, where you have to manually code layouts (unless you use some layout generation tools, but they're all pretty iffy), how easy is it to design and code a form/screen/input/etc in Kivy?
If you want to use somethimg else than the default theme however, you might need to do some extra work. As someone else commented, there is a material design theme, haven't used that myself though.
Re: Kivy: Develop multi-touch enabled Python apps
#14I've been using Kivy for a few months now. From my experience it's a great language/platform to develop proof of concepts and prototypes. Main drawbacks: - Community size - It's missing some general styling capabilities Because everything is in Python, it's really easy to get started. Give it a go!
Compared with Qt and Tk for Python, where you have to manually code layouts (unless you use some layout generation tools, but they're all pretty iffy), how easy is it to design and code a form/screen/input/etc in Kivy?
Re: Kivy: Develop multi-touch enabled Python apps
#15Earlier quoted context omitted.
Have you visited their irc chan on freenode (#kivy)? The people who created Kivy are there and very responsive - I remember one of them answering me on the 25th of December. Granted the community is small but I found the people there very lovely to interact.
Unfortunately I have other experiences, mainly not getting any response at all on the irc chan. Will try again though, I should probably also be more responsive myself to questions of others.
Re: Kivy: Develop multi-touch enabled Python apps
#16Can anyone comment on specifically how Kivy is better than the other options available (e.g., QT?). How have other peoples' experiences been? Some comments say small community, but that seems like it could be a large drawback honestly. Does that mean, for example, there are few(er) stack overflow posts about it, and you are likely to run into some painful issues along the way? How well does it integrate with matplotl…
Re: Kivy: Develop multi-touch enabled Python apps
#17I always keep my eye on the Play Store for any production apps using Kivy. It used to be the case that they all had a fairly unconventional (game-like) UI or a fairly clunky one. Can anyone point me to a Kivy app that shows - if not totally native looking - at least a fairly standard approach to developing an Android UI? (on the plus side - Kivy apps always seem smooth and responsive on Android) EDIT - I found this p…
I think it's still generally the case that Kivy apps tend to use the default (clunky) theme or something more custom, but there has recently been some user activity around alternatives, e.g. a set material design themed widgets ( https://github.com/kivymd/KivyMD ). I'm not sure if any apps using this have been published on the Play store. We've been discussing how to include more unified themeing capabilities in Kivy…
This definitively looks interesting. I had previously tested kivy and only had little issues with pyjnius and font sizes as switching between versions. More modern looks sounds great, might the resurrect that old project.
Re: Kivy: Develop multi-touch enabled Python apps
#18Kivy does have its quirks and oddities. From the top of my head:
- Want to set the background color on a widget? Gotta drop into GL-like drawcalls and add a coloured rectangle below your widget.
- On the Raspberry Pi, I see a strange behaviour where adding and removing elements from the widget hierarchy causes widgets to randomly not appear, or flicker, or old widgets to re-appear — even though the widget hierarchy looks "clean" on inspection. This problem doesn't occur on Linux using X, or on Windows, so I suspect the reason lies somewhere in the frame buffer inplementation.
Edit: Formatting
Re: Kivy: Develop multi-touch enabled Python apps
#19Kivy's multiplatform support is impressive. An application I'm working on at the moment runs in X on Ubuntu, on Microsoft Windows and on a Raspberry Pi 3. On the latter Kivy draws the UI using the frame buffer directly, without X. Kivy does have its quirks and oddities. From the top of my head: - Want to set the background color on a widget? Gotta drop into GL-like drawcalls and add a coloured rectangle below your wi…
Isn't that the same as with most other multiplatform toolkits? GTK and Qt both support framebuffer rendering, IIRC.
Re: Kivy: Develop multi-touch enabled Python apps
#20How is it looking right now? Can anyone point me to some good docs and tutorials?