kivy tutorial code example
Example 1: kivy sample code
from kivy.app import App
from kivy.uix.gridlayout import GridLayout
from kivy.uix.label import Label
from kivy.uix.textinput import TextInput
class LoginScreen(GridLayout):
def __init__(self, **kwargs):
super(LoginScreen, self).__init__(**kwargs)
self.cols = 2
self.add_widget(Label(text='User Name'))
self.username = TextInput(multiline=False)
self.add_widget(self.username)
self.add_widget(Label(text='password'))
self.password = TextInput(password=True, multiline=False)
self.add_widget(self.password)
class MyApp(App):
def build(self):
return LoginScreen()
if __name__ == '__main__':
MyApp().run()
Example 2: how to make a gui with kivy
class FirstKivy(App):
def build(self):
return Label(text="Hello Kivy!")
Example 3: how to make a gui with kivy
from kivy.uix.label import Label
Example 4: kivy python
from kivy.app import App
from kivy.uix.button import Button
class TestApp(App):
def build(self):
return Button(text='My Name is Vivek')
TestApp().run()
Example 5: how to make a gui with kivy
from kivy.app import App
from kivy.uix.label import Label
class FirstKivy(App):
def build(self):
return Label(text="Hello Kivy!")
FirstKivy().run()