Kivy python 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: python kivy
#-*- coding: utf-8 -*-
from kivy.app import App
from kivy.uix.label import Label
class TestApp(App):
def build(self):
return Label(text='Hello World')
TestApp().run()
Example 3: python kivy
[Python 3.5 Windows]
python -m pip install kivy.deps.angle
python -m pip install kivy
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()