Kivy

3 Articles 0 Followers


Kivy Python canvas

22 Dec 2022 2 minute read 1 comment Sthappened

Today, we will look at canvas. You can operate with canvas in .py file using with self.canvas:; or in .kv file using canvas:. What is canvas Canvas is a place which contains some objects. For example: Rectangle RoundedRectangle Color Ellipse We'll...

Kivy Layouts and widgets

12 Dec 2022 2 minute read 0 comments Sthappened

Before doing anything in Kivy it is important to understand what Layouts and Widgets are and how to work with them. What is a widget? Widget is any visual object which you can create with Kivy. For example Button, Label, TextInput... You can place th...

What is Kivy?

11 Dec 2022 1 minute read 0 comments Sthappened

Kivy is an open-source Python framework used to create a cross-platform GUI (graphical user interface) apps. Why should you choose Kivy? Kivy has lots of different options, despite this, it is relatively simple. If you want to create an app with GUI...