Elliot Garbus

Results 67 comments of Elliot Garbus
trafficstars

The official support forums are: https://groups.google.com/g/kivy-users https://discord.com/invite/eT3cuQp There is also a support forum on Reddit: https://www.reddit.com/r/kivy/ Please take this support question to one of these forums. This area on Github...

Here is an example: ```python from kivy.app import App from kivy.lang import Builder kv = """ AnchorLayout: BoxLayout: size_hint: None, None size: dp(300), dp(48) Button: text: 'One' Button: text: 'Two'...

Here are 2 ways to position the widgets the way you would like. One with AnchorLayouts, the other using pos_hints in a FloatLayout. ```python from kivy.app import App from kivy.lang...

No plans to create a new package.

@jporta09 Yes you can add the date and time... The kivy logger is a configured python logger. The python logger is very flexible. The first way I thought to do...

This is a support issue, not a bug. I suggest you post your issue to the kivy discord. Android storage is not the same as on your computer, read: https://github.com/Android-for-Python/Android-for-Python-Users?tab=readme-ov-file#android-storage

@pinheiroju I would recommend you just go for it and issue a PR. No need to wait for a maintainer to assign it.

do you have this code operating properly on a laptop? You do not need to use a bind, you are defining the on_touch methods in the Widget class. You are...

I see the behavior that other users are reporting, I resize the window, the memory jumps up, after a few seconds, the memory size reduces. If I minimize the window...