Search code examples
pythonvisual-studiokivykivy-languagekivymd

How to change the kivy text render from sdl2 to pango?


I need to change my text render in kivy python from sdl2 to pango text render or text provider how can i make it ?


Solution

  • After insatlling pango, use this at the top of your file.

    import os
    os.environ['KIVY_TEXT'] = 'pango'