Skip to main content

Posts

Showing posts from July, 2020

MDFlatButton

CREATING A FLAT BUTTON USING KIVYMD   Link Of Video on You Tube -  https://youtu.be/6HangYGByAs Following are the steps that are required to create Flat 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 MDFlatButton 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 MDFlatButton class 1.  text - Text to be printed in the button (takes string) 2.  pos_hint -  To place the button at particular position (takes float values) 3.  theme_text_color : To change the col

MDFillRoundFlatIconButton

CREATING A FILL ROUND FLAT ICON  BUTTON USING KIVYMD   Video Link on You Tube -  https://youtu.be/lAvrGEr3RFo Following are the steps that are required to create Fill Round Flat 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 MDFillRoundFlatIconButton 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 MDFillRoundFlatIconButton class 1. text - Text to be printed in the button (takes string) 2.  icon - name of icon to be printed on t he button. Note :- you

MDFillRoundFlatButton

CREATING A FILL ROUND FLAT BUTTON BUTTON USING KIVYMD   Video Link on You tube -  https://youtu.be/QxkHIR_q8eI Following are the steps that are required to create Fill Round Flat 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 MDFillRoundFlatButton 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 MDFillRoundFlatButton class 1. text - Text to be printed in the button (takes string) 2. pos_hint -  To place the button at particular position (takes float values

SIGN-UP page (Projects)

Creating a SIGN-UP page using KIVYMD Video Link on you tube -  https://youtu.be/6yujEdnTtfQ Following classes are required to create a sign-up page :- 1. MDApp - To create a App 2. MDScreen - To create a screen 3. MDCard - To create a Card  4. MDLabel - To create a Label 5. MDTextFieldRound - To take ID and Password Input from user 6. MDRoundFlatButton - To create a sign-up button Note :- 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 code of SIGN-UP page # Code of Python Program from  kivymd.app  import  MDApp class   Myapp ( MDApp ):      def   build ( self ):          return Myapp().run() # Save it by .py extension # Code of Kivy Program MDScreen :     md_bg_color :  [ 35 / 255 , 59 / 255 , 54 / 255 , 1 ]     MDCard :         orientation :   'vertical'         size_hint 

LOGIN page (Projects)

Creating a LOGIN page using KIVYMD Video link on YouTube -   https://youtu.be/2ImbdfgY0Gg Following classes are required to create a login page :- 1. MDApp - To create a App 2. MDScreen - To create a screen 3. MDCard - To create a Card  4. MDLabel - To create a Label 5. MDTextFieldRound - To take ID and Password Input from user 6. MDRoundFlatButton - To create a sign-up button Note :- 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 code of LOGIN page # Code of Python Program from  kivymd.app  import  MDApp class   Myapp ( MDApp ):      def   build ( self ):          return Myapp().run() # Save it by .py extension # Code of KIVY File MDScreen :     md_bg_color :  [ 35 / 255 , 59 / 255 , 54 / 255 , 1 ]     MDCard :         size_hint :  None,None         size :   320 , 400         pos

MDRoundFlatIconButton

CREATING A ROUND FLAT ICON BUTTON USING KIVYMD    Video Link on You Tube -  https://youtu.be/iP4jN7cLv1Y Following are the steps that are required to create Round flat 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 MDRoundFlatIconButton 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 MDRoundFlatIconButton class 1. text - Text to be printed in the button (takes string) 2.  icon - name of icon to be printed on t he button. Note :- you can get the list

MDRoundFlatButton

CREATING A ROUND FLAT BUTTON USING KIVYMD   Video Link On YouTube -  https://youtu.be/dgGAWPuf8hk Following are the steps that are required to create Round Flat 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 MDRoundFlatButton 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 MDRoundFlatButton class 1. text - Text to be printed in the button (takes string) 2. pos_hint -  To place the button at particular position (takes float values) 3. theme_text_color : To

MDRectangleFlatIconButton

CREATING A RECTANGLE FLAT ICON BUTTON USING KIVYMD    Video Link on YouTube -  https://youtu.be/HMS_CK2XcyE Following are the steps that are required to create Rectangle flat 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 MDRectangleFlatIconButton 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 MDRectangleFlatIconButton class 1. text - Text to be printed in the button (takes string) 2.  icon - name of icon to be printed on t he button. Note :- you ca

MDRectangleFlatButton

CREATING A RECTANGLE FLAT BUTTON USING KIVYMD   You Tube Video Link -  https://youtu.be/uK7f3CL_Tjo Following are the steps that are required to create Rectangle flat 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 MDRectangleFlatButton 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 MDRectangleFlatButton class 1. text - Text to be printed in the button (takes string) 2. pos_hint -  To place the button at particular position (takes float values) 3. theme_t

MDRaisedButton

CREATING A RAISED BUTTON USING KIVYMD   Following are the steps that are required to create Raised 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 MDRaisedButton 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 MDRaisedButton class 1. text - Text to be printed in the button (takes string) 2. pos_hint -  To place the button at particular position (takes float values) 3. theme_text_color : To change the color of icon (Values Primary, Secondary, Hint, Error an

MDFlatButton

CREATING A FLAT BUTTON USING KIVYMD   Following are the steps that are required to create Flat 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 MDFlatButton 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 MDFlatButton class 1. text - Text to be printed in the button (takes string) 2. pos_hint -  To place the button at particular position (takes float values) 3. theme_text_color : To change the color of icon (Values Primary, Secondary, Hint, Error and Custom