Created
September 13, 2024 16:40
-
-
Save garvit-exe/33290a44fbf0489b2e00276f8fb3fc3e to your computer and use it in GitHub Desktop.
Onscreen Keyboard using Kivy
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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