0
I’m starting in Python and Kivy, but I’m not understanding why the generated objects are so low-resolution. In a simple screen of username and password, one can observe the serrated text, ie with low rendering.
Is there a way to achieve a better quality or is it a limitation of language?
Follows 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