Skip to main content

Posts

MDFloatingActionButton

CREATING A FLOATING ACTION BUTTON USING KIVYMD   Link of Video on You tube :-  https://youtu.be/aoW_aIE9-sU Following are the steps that are required to create Floating action button :    1. Creating the App by importing the MDApp class of kivymd module. 2. Creating the Screen by using MDScreen class of kivymd module. 3. Creating a button using MDFloatingActionButton class of kivymd module.  First Create a Python file (extension .py) then, create a kivy file (.kv extension) name of kivy file should be same as app name. App name is the name of the class that consist of b uild function and created by inheriting the MDApp class Following is the list of attributes used in this program :- Attributes of MDScreen class 1. md_bg_color - To change the background color  2. radius - to change the corner radius of screen Attributes of MDFloatingActionButton class 1. icon - name of icon to be printed on t he screen. Note :- you can get the list of ICON name by usin...

MDIconButton

CREATING A ICON BUTTON USING KIVYMD   Link of Video on You tube :-   https://youtu.be/_nsvUQtRgNI Following are the steps that are required to create a Icon button :    1. Creating the App by importing the MDApp class of kivymd module. 2. Creating the Screen by using MDScreen class of kivymd module. 3. Creating a button using MDIconButton class of kivymd module.  First Create a Python file (extension .py) then, create a kivy file (.kv extension) name of kivy file should be same as app name. App name is the name of the class that consist of b uild function and created by inheriting the MDApp class Following is the list of attributes used in this program :- Attributes of MDScreen class 1. md_bg_color - To change the background color  2. radius - to change the corner radius of screen Attributes of MDIconButton class 1. icon - name of icon to be printed on t he screen. Note :- you can get the list of ICON name by using this url     ...

Printing Icon on the screen

PRINTING A ICON ON THE SCREEN USING KIVYMD   Link of Video on You tube :-  https://youtu.be/TsEUSwJm6CI Following are the steps that are required to print an Icon on the screen using kivymd :    1. Creating the App by importing the MDApp class of kivymd module 2. Creating the Screen by using MDScreen class of kivymd module 3. Printing the Icon on the screen using MDIcon class First Create a Python file (extension .py) then, create a kivy file (.kv extension) name of kivy file should be same as app name. App name is the name of the class that consist of b uild function and created by inheriting the MDApp class Following is the list of attributes used in this program :- Attributes of MDScreen class 1. md_bg_color - To change the background color  2. radius - to change the corner radius of screen Attributes of MDIcon class 1. icon - name of icon to be printed on t he screen. Note :- you can get the list of ICON name by using this url       ...

"Hello World" program in kivymd

CREATING A HELLO WORLD PROGRAM IN KIVYMD    Link of Video on You tube :- https://youtu.be/EivVLZ6A-Ac Following are the steps that are required to create hello world program in kivymd    1. Creating the App by importing the MDApp class of kivymd module 2. Creating the Screen by using MDScreen class of kivymd module 3. Printing the hello world text by using the MDLabel class of kivymd      module First Create a Python file (extension .py) then, create a kivy file (.kv extension) name of kivy file should be same as app name. App name is the name of the class that consist of build function and created by inheriting the MDApp class Following is the list of attributes used in this program :- Attributes of MDScreen class 1. md_bg_color - To change the background color  2. radius - to change the corner radius of screen Attributes of MDLabel class 1. text - to print the text on the screen 2. halign -  To horizontally align the text on the screen...