1. Home
  2. /
  3. Kivy
  4. /
  5. Login UI Example

Login UI Example - Kivy Typing CST Test

Loading…

Login UI Example — Kivy Code

Creates a basic login interface with username and password fields.

from kivy.app import App
from kivy.uix.boxlayout import BoxLayout
from kivy.uix.textinput import TextInput
from kivy.uix.button import Button

class LoginApp(App):
	def build(self):
		layout = BoxLayout(orientation='vertical', padding=20)
		self.username = TextInput(hint_text='Username')
		self.password = TextInput(hint_text='Password', password=True)
		btn = Button(text='Login', on_press=lambda x: self.login())
		layout.add_widget(self.username)
		layout.add_widget(self.password)
		layout.add_widget(btn)
		return layout

	def login(self):
		print(f'User: {self.username.text}')

if __name__ == '__main__':
	LoginApp().run()

Kivy Language Guide

Kivy is an open-source Python framework for building cross-platform multitouch applications on Android, iOS, Windows, macOS, Linux, and Raspberry Pi. It provides a UI toolkit, gesture support, animations, layouts, and a declarative KV language for rapid app development.

Primary Use Cases

  • ▸Mobile apps (Android/iOS)
  • ▸Touchscreen kiosks and dashboards
  • ▸Cross-platform GUI apps in Python
  • ▸Prototyping and educational tools
  • ▸Raspberry Pi and hardware interfaces

Notable Features

  • ▸KV language for declarative UI
  • ▸GPU-accelerated rendering
  • ▸Multitouch gesture framework
  • ▸Cross-platform build tools
  • ▸Rich widget and layout system

Origin & Creator

Kivy was created by Mathieu Virbel and the Kivy Organization, evolving from the PyMT project and released publicly in 2011 as a modern Python GUI + mobile app framework.

Industrial Note

Kivy is especially loved in education, research environments, rapid prototyping, Raspberry Pi projects, and Python-first development teams requiring cross-platform touch UIs.

More Kivy Typing Exercises

Kivy Counter ExampleKivy Todo List AppKivy Theme SwitcherKivy Slider ExampleKivy Stopwatch ExampleKivy Toggle Button ExampleKivy Color Picker ExampleKivy Calculator ExampleKivy Image Viewer Example

Practice Other Languages

CReactPythonC++RustTypeScriptKotlinPHPJavaC#RubyMqlCqlN1qlCypher