I have two screens in a Kivy program. The first one represents the login screen, so it needs to be smaller, while the other has the data, so I need to make it full screen.
I tried to use
from kivy.config import Config
Config.set('graphics', 'width', '350')
Config.set('graphics', 'height', '250')
But, the problem is with this the other screen's size has also decreased, help me if you have any idea what I need to do to have different sizes for different screens, thanks.