Posts

Showing posts from March, 2021

Python GUI Classic Example using KivyMD and Kivy (ScreenManager, position, MD, Images, Carousel etc.)

Image
 Wallpaper Application Hi Guys! hope you all are doing well. I have created a GUI application based on python. I have used Kivy, Kivymd in this project to handle the material design. In this example you can see Boxlayout, Swiping between different screens, Labels, Images and many more thing. Requirement : Install Kivy, kivymd in you pc. Link: https://pypi.org/project/kivymd/            https://kivy.org/doc/stable/installation/installation-windows.html Below is the source code and output screenshot. from kivymd.app import MDApp from kivy.lang.builder import Builder from kivy.uix.screenmanager import Screen , ScreenManager screen_helper= ''' ScreenManager: MenuScreen: ProfileScreen: ImageScreen: <MenuScreen>: name : 'menu' MDLabel: text:'Hi! Happy to see you here.' theme_text_color:'Custom' text_color: 0.20,0.596,0.85,1 halign:'center' MDTextField: helper_text...