drahba

Results 8 comments of drahba

You can adjust the speed of a gif in AsyncImage using the [anim_delay](https://kivy.org/doc/stable/api-kivy.uix.image.html#kivy.uix.image.Image.anim_delay) property

ScreenManager has previous() and next() functions you may try them!

The code you provided just woks fine with kivy 2.1.0, python 3.8.9 venv, pycharm 2022.1, ubuntu 20.04LTS. There is probably something missing in your installation or the environment

You may try kivyMD - material design library built on top of kivy, bu tit is slower than kivy in performance. It includes calendar as well. You may also use...

You need to set the color with constant directly on the kv side: ``` canvas.before: Color: rgba: BLUE Rectangle: size: self.size pos: self.pos ``` The other way is to instantiate...

You may be repeating something somewhere else in your code. Did you check the rest of your code for double action. You may also try kivy 2.1.0. Can you provide...

I think it is not possible solely on the kv language side. But after you define widgets in the kv language in an ordered layout such as boxlayout, then you...

With the new buildozer there is another way to add lottie animation and bypass python coding; 1) Add lottie.json to the raw folder 2) Create a java class that adds...