Config.set('graphics', 'rotation', '90')
And get the look right, but doesn't feel right - if there is TextInput widget and when I tap on it, the onscreen keyboard will come out on the left hand side of the screen, rather than from button, because the iOS thinks the app is always in landscape mode.
Then I tried this but no success:
from kivy.config import Config
Config.set('graphics', 'fullscreen', '1')
Config.set('graphics', 'width', '768')
Config.set('graphics', 'height', '1024')
Config.set('graphics', 'top', '0')
Config.set('graphics', 'left', '768')
How do I set it to Portrait mode only when the app is launched?
Cheers,
Pat