Reputation: 1
I want to show the virtual Keyboard when the text input is focused on the Kivy UI on the 7" touch screen of the Raspberry pi 3b.
Upvotes: 0
Views: 3178
Reputation: 517
from kivy.config import Config
Config.set('kivy', 'keyboard_mode', 'systemandmulti')
Read more in Kivy documentation.
Upvotes: 1