Skip to content

Instantly share code, notes, and snippets.

@garvit-exe
Created September 13, 2024 16:40
Show Gist options
  • Save garvit-exe/33290a44fbf0489b2e00276f8fb3fc3e to your computer and use it in GitHub Desktop.
Save garvit-exe/33290a44fbf0489b2e00276f8fb3fc3e to your computer and use it in GitHub Desktop.
Onscreen Keyboard using Kivy
import kivy
kivy.require('2.3.0')
from kivy.app import App
from kivy.uix.vkeyboard import VKeyboard
class Key(VKeyboard):
player = VKeyboard()
class MyApp(App):
def build(self):
return Key()
if __name__ == '__main__':
MyApp().run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment