Low resolution text in Python Kivy

0

I'm starting in Python and Kivy, but I'm not understanding why the low resolution of the generated objects. In a simple screen of username and password, it is possible to observe the text serrated, that is, with low rendering.

Is there a way to achieve better quality or is it a language limitation?

Follow files.

login.py

from kivy.app import App
from kivy.uix.widget import Widget

class Access(Widget):
    pass

class LoginApp(App):

    def build(self):
        return Access()

LoginApp().run()

login.kv

#:kivy 1.0.9

<Access>:
    f_username: username
    f_password: password
    GridLayout:
        pos: root.center_x-self.width, root.center_y-self.height/2
        col_default_width: 100
        rows: 2
        cols: 2
        Label:
            text: 'User Name:'
        TextInput:
            id: username
            multiline: False
        Label:
            text: 'Password:'
        TextInput:
            id: password
            password: True
    
asked by anonymous 10.03.2018 / 18:04

1 answer

0

I think it happened because of the version of your kivy, or because of your machine, because kivy has GPU boost, and can be used to develop games, so it supports higher resolutions.

The code you are using has an example in the kivy documentation itself, you can look at it here , on pages 56 and 57, and the technical information for graphics and etc. on the first few pages.

    
11.12.2018 / 17:00