Kivy Tutorial – BoxLayout in Python Kivy

In this Kivy Tutorial we want to learn that How to Create a BoxLayout in Python Kivy, so Kivy is powerful and open source Python GUI Framework, and it is used for building multi touch applications, Kivy provides different layout managers, using these layout managers we can structure our application. one important layout is BoxLayout, which arrange widgets in a linear fashion.

 

 

 

First of all we need to install Kivy and we can use pip for the installation, open your command prompt or terminal and write this command.

 

 

 

After installation, this is the complete code for this article

 

 

 

In the above code first we have imported the required modules.

 

 

After that we define a class that inherits from BoxLayout class. this class will represent our box layout. in our this class we want to define the structure and properties of our layout.

In the above code, we have created an instance of the MyBoxLayout class and set the orientation to vertical. after that we add three Label widgets to the box layout using the add_widget method.

 

 

 

Now, we need to create an App class to run our application. this class will be responsible for creating and running the user interface, in the build method, we instantiate our MyBoxLayout class and return it.

 

 

 

For starting our application, we need to create an instance of the MyApp class and call its run method.

 

 

 

 

 

Run the complete code and this will be the result

Kivy Tutorial - BoxLayout in Python Kivy
Kivy Tutorial – BoxLayout in Python Kivy

Subscribe and Get Free Video Courses & Articles in your Email

 

Leave a Comment

Share via
Copy link
Powered by Social Snap
×